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

PropertyStandby() public method

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
return bool
        public bool PropertyStandby()
        {
            PropertyReadLock();
            bool val;
            try
            {
                val = iStandby.Value();
            }
            finally
            {
                PropertyReadUnlock();
            }
            return val;
        }
CpProxyAvOpenhomeOrgProduct1