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

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

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