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

WithBit() 공개 메소드

public WithBit ( Bits bit, bool set = true ) : StatusFlags
bit Bits
set bool
리턴 StatusFlags
        public StatusFlags WithBit(Bits bit, bool set = true)
        {
            return new StatusFlags(_bitstring.WithBit((int)bit, set));
        }