OpenHome.Net.ControlPoint.ArgumentBool.ArgumentBool C# (CSharp) Метод

ArgumentBool() публичный Метод

Constructor for boolean output argument for an action
Intended to be created without any value. The value is later set after CpService.InvokeAction is called but before the invocation's callback is run)
public ArgumentBool ( ParameterBool aParameter ) : System
aParameter OpenHome.Net.Core.ParameterBool Defines the name for the argument. /// Must have been previously added to the action using Action.AddOutputParameter
Результат System
        public ArgumentBool(ParameterBool aParameter)
        {
            iHandle = ActionArgumentCreateBoolOutput(aParameter.Handle());
        }

Same methods

ArgumentBool::ArgumentBool ( ParameterBool aParameter, bool aValue ) : System