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

WithBit() public method

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