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

PropertySourceIndex() public method

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