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

PropertyVarUint() public method

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