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

SyncGetBool() public method

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncGetBool ( bool &aValueBool ) : void
aValueBool bool
return void
        public void SyncGetBool(out bool aValueBool)
        {
            SyncGetBoolOpenhomeOrgTestBasic1 sync = new SyncGetBoolOpenhomeOrgTestBasic1(this);
            BeginGetBool(sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
            aValueBool = sync.ValueBool();
        }