OpenHome.Net.ControlPoint.Proxies.CpProxyOpenhomeOrgTestBasic1.BeginSetBool C# (CSharp) Method

BeginSetBool() public method

Invoke the action asynchronously
Returns immediately and will run the client-specified callback when the action later completes. Any output arguments can then be retrieved by calling EndSetBool().
public BeginSetBool ( bool aValueBool, CallbackAsyncComplete aCallback ) : void
aValueBool bool
aCallback CallbackAsyncComplete Delegate to run when the action completes. /// This is guaranteed to be run but may indicate an error
return void
        public void BeginSetBool(bool aValueBool, CallbackAsyncComplete aCallback)
        {
            Invocation invocation = iService.Invocation(iActionSetBool, aCallback);
            int inIndex = 0;
            invocation.AddInput(new ArgumentBool((ParameterBool)iActionSetBool.InputParameter(inIndex++), aValueBool));
            iService.InvokeAction(invocation);
        }