BACnet.Ashrae.StatusFlags.WithBit C# (CSharp) Méthode

WithBit() public méthode

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