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

SyncSetUint() public method

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncSetUint ( uint aValueUint ) : void
aValueUint uint
return void
        public void SyncSetUint(uint aValueUint)
        {
            SyncSetUintOpenhomeOrgTestBasic1 sync = new SyncSetUintOpenhomeOrgTestBasic1(this);
            BeginSetUint(aValueUint, sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
        }