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

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

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