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

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

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