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

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