OpenHome.Net.ControlPoint.Proxies.CpProxyUpnpOrgContentDirectory1.PropertyIndexerStatus C# (CSharp) Метод

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

Query the value of the IndexerStatus 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 PropertyIndexerStatus ( ) : String
Результат String
        public String PropertyIndexerStatus()
        {
            PropertyReadLock();
            String val = iIndexerStatus.Value();
            PropertyReadUnlock();
            return val;
        }