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

PropertyModelName() public method

Query the value of the ModelName 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 PropertyModelName ( ) : String
return String
        public String PropertyModelName()
        {
            PropertyReadLock();
            String val;
            try
            {
                val = iModelName.Value();
            }
            finally
            {
                PropertyReadUnlock();
            }
            return val;
        }
CpProxyAvOpenhomeOrgProduct1