BACnet.Ashrae.ConfirmedServiceRequest.RequestKeyWrapper.Load C# (CSharp) Method

Load() public static method

public static Load ( IValueStream stream ) : RequestKeyWrapper
stream IValueStream
return RequestKeyWrapper
            public static new RequestKeyWrapper Load(IValueStream stream)
            {
                var temp = Value<RequestKeyRequest>.Load(stream);
                return new RequestKeyWrapper(temp);
            }
ConfirmedServiceRequest.RequestKeyWrapper