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

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

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