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

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

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