OpenHome.Net.ControlPoint.Proxies.CpProxyOpenhomeOrgTestBasic1.PropertyVarStr C# (CSharp) Méthode

PropertyVarStr() public méthode

Query the value of the VarStr 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 PropertyVarStr ( ) : String
Résultat String
        public String PropertyVarStr()
        {
            PropertyReadLock();
            String val;
            try
            {
                val = iVarStr.Value();
            }
            finally
            {
                PropertyReadUnlock();
            }
            return val;
        }