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

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

Retrieve the output arguments from an asynchronously invoked action.
This may only be called from the callback set in the above Begin function.
public EndCreateQueue ( IntPtr aAsyncHandle, String &aGivenName, String &aQueueID, String &aMetaData ) : void
aAsyncHandle System.IntPtr Argument passed to the delegate set in the above Begin function
aGivenName String
aQueueID String
aMetaData String
Результат void
        public void EndCreateQueue(IntPtr aAsyncHandle, out String aGivenName, out String aQueueID, out String aMetaData)
        {
            uint code;
            string desc;
            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;
            aGivenName = Invocation.OutputString(aAsyncHandle, index++);
            aQueueID = Invocation.OutputString(aAsyncHandle, index++);
            aMetaData = Invocation.OutputString(aAsyncHandle, index++);
        }