BACnet.Ashrae.LimitEnable.WithBit C# (CSharp) Method

WithBit() public method

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