OpenHome.Net.ControlPoint.Proxies.CpProxyUpnpOrgContentDirectory1.BeginRenameQueue C# (CSharp) Метод

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

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 EndRenameQueue().
public BeginRenameQueue ( String aQueueID, String aDesiredName, CallbackAsyncComplete aCallback ) : void
aQueueID String
aDesiredName String
aCallback CallbackAsyncComplete Delegate to run when the action completes. /// This is guaranteed to be run but may indicate an error
Результат void
        public void BeginRenameQueue(String aQueueID, String aDesiredName, CallbackAsyncComplete aCallback)
        {
            Invocation invocation = iService.Invocation(iActionRenameQueue, aCallback);
            int inIndex = 0;
            invocation.AddInput(new ArgumentString((ParameterString)iActionRenameQueue.InputParameter(inIndex++), aQueueID));
            invocation.AddInput(new ArgumentString((ParameterString)iActionRenameQueue.InputParameter(inIndex++), aDesiredName));
            int outIndex = 0;
            invocation.AddOutput(new ArgumentString((ParameterString)iActionRenameQueue.OutputParameter(outIndex++)));
            iService.InvokeAction(invocation);
        }