BACnet.Ashrae.GetAlarmSummaryAck.Load C# (CSharp) Method

Load() public static method

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