BACnet.Ashrae.GetAlarmSummaryAck.Load C# (CSharp) 메소드

Load() 공개 정적인 메소드

public static Load ( IValueStream stream ) : GetAlarmSummaryAck
stream IValueStream
리턴 GetAlarmSummaryAck
        public static GetAlarmSummaryAck Load(IValueStream stream)
        {
            var temp = Value<ReadOnlyArray<Element>>.Load(stream);
            return new GetAlarmSummaryAck(temp);
        }