OpenHome.Net.ControlPoint.Proxies.CpProxyRaumfeldComConfigService1.EndSetPreferences C# (CSharp) Method

EndSetPreferences() 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 EndSetPreferences ( IntPtr aAsyncHandle ) : void
aAsyncHandle System.IntPtr Argument passed to the delegate set in the above Begin function
return void
        public void EndSetPreferences(IntPtr aAsyncHandle)
        {
            uint code;
            string desc;
            if (Invocation.Error(aAsyncHandle, out code, out desc))
            {
                throw new ProxyError(code, desc);
            }
        }

Usage Example

Example #1
0
 protected override void CompleteRequest(IntPtr aAsyncHandle)
 {
     iService.EndSetPreferences(aAsyncHandle);
 }