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

Load() public static method

public static Load ( IValueStream stream ) : VTCloseError
stream IValueStream
return VTCloseError
        public static VTCloseError Load(IValueStream stream)
        {
            stream.EnterSequence();
            var errorType = Value<Error>.Load(stream);
            var listOfVTSessionIdentifiers = Value<Option<ReadOnlyArray<byte>>>.Load(stream);
            stream.LeaveSequence();
            return new VTCloseError(errorType, listOfVTSessionIdentifiers);
        }