OpenHome.Net.ControlPoint.Proxies.CpProxyAvOpenhomeOrgProduct1.PropertyStandby C# (CSharp) Метод

PropertyStandby() публичный Метод

Query the value of the Standby property.
This function is threadsafe and can only be called if Subscribe() has been called and a first eventing callback received more recently than any call to Unsubscribe().
public PropertyStandby ( ) : bool
Результат bool
        public bool PropertyStandby()
        {
            PropertyReadLock();
            bool val;
            try
            {
                val = iStandby.Value();
            }
            finally
            {
                PropertyReadUnlock();
            }
            return val;
        }
CpProxyAvOpenhomeOrgProduct1