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

PropertySourceCount() public method

Query the value of the SourceCount 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 PropertySourceCount ( ) : uint
return uint
        public uint PropertySourceCount()
        {
            PropertyReadLock();
            uint val;
            try
            {
                val = iSourceCount.Value();
            }
            finally
            {
                PropertyReadUnlock();
            }
            return val;
        }
CpProxyAvOpenhomeOrgProduct1