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

WithBit() public method

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