OpenHome.Net.ControlPoint.Proxies.CpProxyAvOpenhomeOrgProduct1.PropertyAttributes C# (CSharp) 메소드

PropertyAttributes() 공개 메소드

Query the value of the Attributes 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 PropertyAttributes ( ) : String
리턴 String
        public String PropertyAttributes()
        {
            PropertyReadLock();
            String val;
            try
            {
                val = iAttributes.Value();
            }
            finally
            {
                PropertyReadUnlock();
            }
            return val;
        }
CpProxyAvOpenhomeOrgProduct1