OpenHome.Net.ControlPoint.Proxies.CpProxyAvOpenhomeOrgProduct1.SyncStandby C# (CSharp) Méthode

SyncStandby() public méthode

Invoke the action synchronously
Blocks until the action has been processed on the device and sets any output arguments
public SyncStandby ( bool &aValue ) : void
aValue bool
Résultat void
        public void SyncStandby(out bool aValue)
        {
            SyncStandbyAvOpenhomeOrgProduct1 sync = new SyncStandbyAvOpenhomeOrgProduct1(this);
            BeginStandby(sync.AsyncComplete());
            sync.Wait();
            sync.ReportError();
            aValue = sync.Value();
        }
CpProxyAvOpenhomeOrgProduct1