OpenHome.Net.Core.PropertyInt.Value C# (CSharp) Method

Value() public method

Query the value of the property
public Value ( ) : int
return int
        public int Value()
        {
            int val;
            if (ServicePropertyValueInt(iHandle, out val) == -1)
                throw new PropertyError();
            return val;
        }