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

Load() 공개 정적인 메소드

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