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

SyncSetMultiple() public method

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncSetMultiple ( uint aValueUint, int aValueInt, bool aValueBool ) : void
aValueUint uint
aValueInt int
aValueBool bool
return void
        public void SyncSetMultiple(uint aValueUint, int aValueInt, bool aValueBool)
        {
            SyncSetMultipleOpenhomeOrgTestBasic1 sync = new SyncSetMultipleOpenhomeOrgTestBasic1(this);
            BeginSetMultiple(aValueUint, aValueInt, aValueBool, sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
        }