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

SyncSetStandby() public method

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncSetStandby ( bool aValue ) : void
aValue bool
return void
        public void SyncSetStandby(bool aValue)
        {
            SyncSetStandbyAvOpenhomeOrgProduct1 sync = new SyncSetStandbyAvOpenhomeOrgProduct1(this);
            BeginSetStandby(aValue, sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
        }
CpProxyAvOpenhomeOrgProduct1