OpenHome.Net.ControlPoint.ArgumentBinary.ArgumentBinary C# (CSharp) Method

ArgumentBinary() public method

Constructor for binary 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 ArgumentBinary ( ParameterBinary aParameter ) : System
aParameter OpenHome.Net.Core.ParameterBinary Defines the name plus any bounds to the value for the argument. /// Must have been previously added to the action using Action.AddOutputParameter
return System
        public ArgumentBinary(ParameterBinary aParameter)
        {
            iHandle = ActionArgumentCreateBinaryOutput(aParameter.Handle());
        }

Same methods

ArgumentBinary::ArgumentBinary ( ParameterBinary aParameter, byte aData ) : System