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

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

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