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

Load() 공개 정적인 메소드

public static Load ( IValueStream stream ) : CharacterWrapper
stream IValueStream
리턴 CharacterWrapper
            public static new CharacterWrapper Load(IValueStream stream)
            {
                var temp = Value<string>.Load(stream);
                return new CharacterWrapper(temp);
            }
UnconfirmedTextMessageRequest.CharacterWrapper