OpenHome.Net.ControlPoint.Proxies.CpProxyAvOpenhomeOrgProduct1.EndSourceXmlChangeCount C# (CSharp) Method

EndSourceXmlChangeCount() public method

Retrieve the output arguments from an asynchronously invoked action.
This may only be called from the callback set in the above Begin function.
public EndSourceXmlChangeCount ( IntPtr aAsyncHandle, uint &aValue ) : void
aAsyncHandle System.IntPtr Argument passed to the delegate set in the above Begin function
aValue uint
return void
        public void EndSourceXmlChangeCount(IntPtr aAsyncHandle, out uint aValue)
        {
            uint code;
            string desc;
            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
            uint index = 0;
            aValue = Invocation.OutputUint(aAsyncHandle, index++);
        }
CpProxyAvOpenhomeOrgProduct1