OpenHome.Net.ControlPoint.Proxies.CpProxyAvOpenhomeOrgSender1.BeginStatus C# (CSharp) Method

BeginStatus() 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 EndStatus().
public BeginStatus ( CallbackAsyncComplete aCallback ) : void
aCallback CallbackAsyncComplete Delegate to run when the action completes. /// This is guaranteed to be run but may indicate an error
return void
        public void BeginStatus(CallbackAsyncComplete aCallback)
        {
            Invocation invocation = iService.Invocation(iActionStatus, aCallback);
            int outIndex = 0;
            invocation.AddOutput(new ArgumentString((ParameterString)iActionStatus.OutputParameter(outIndex++)));
            iService.InvokeAction(invocation);
        }