OpenHome.Net.ControlPoint.Proxies.CpProxyAvOpenhomeOrgSender1.EndAttributes C# (CSharp) Method

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

Usage Example

コード例 #1
0
 protected override void CompleteRequest(IntPtr aAsyncHandle)
 {
     iService.EndAttributes(aAsyncHandle, out iValue);
 }