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

Load() 공개 정적인 메소드

public static Load ( IValueStream stream ) : IntegerWrapper
stream IValueStream
리턴 IntegerWrapper
            public static new IntegerWrapper Load(IValueStream stream)
            {
                var temp = Value<uint>.Load(stream);
                return new IntegerWrapper(temp);
            }
PriorityValue.IntegerWrapper