HA4IoT.Hardware.LogicalBinaryOutput.WithInvertedState C# (CSharp) Method

WithInvertedState() public method

public WithInvertedState ( bool value = true ) : IBinaryOutput
value bool
return IBinaryOutput
        public IBinaryOutput WithInvertedState(bool value = true)
        {
            InvertValue = value;
            return this;
        }