OpenHome.Net.ControlPoint.Proxies.CpProxyOpenhomeOrgTestBasic1.PropertyVarStr C# (CSharp) Method

PropertyVarStr() public method

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
return String
        public String PropertyVarStr()
        {
            PropertyReadLock();
            String val;
            try
            {
                val = iVarStr.Value();
            }
            finally
            {
                PropertyReadUnlock();
            }
            return val;
        }