OpenHome.Net.ControlPoint.Proxies.CpProxyOpenhomeOrgTestBasic1.EndGetBool C# (CSharp) Method

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