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

SyncGetInt() public method

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncGetInt ( int &aValueInt ) : void
aValueInt int
return void
        public void SyncGetInt(out int aValueInt)
        {
            SyncGetIntOpenhomeOrgTestBasic1 sync = new SyncGetIntOpenhomeOrgTestBasic1(this);
            BeginGetInt(sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
            aValueInt = sync.ValueInt();
        }