OpenHome.Net.ControlPoint.Proxies.CpProxyAvOpenhomeOrgProduct1.BeginSetSourceIndexByName C# (CSharp) Method

BeginSetSourceIndexByName() 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 EndSetSourceIndexByName().
public BeginSetSourceIndexByName ( String aValue, CallbackAsyncComplete aCallback ) : void
aValue String
aCallback CallbackAsyncComplete Delegate to run when the action completes. /// This is guaranteed to be run but may indicate an error
return void
        public void BeginSetSourceIndexByName(String aValue, CallbackAsyncComplete aCallback)
        {
            Invocation invocation = iService.Invocation(iActionSetSourceIndexByName, aCallback);
            int inIndex = 0;
            invocation.AddInput(new ArgumentString((ParameterString)iActionSetSourceIndexByName.InputParameter(inIndex++), aValue));
            iService.InvokeAction(invocation);
        }
CpProxyAvOpenhomeOrgProduct1