OpenHome.Net.ControlPoint.ArgumentBool.Value C# (CSharp) Method

Value() private method

Read the value of a boolean argument.
Only intended for use with output arguments inside the invocation completed callback.
private Value ( ) : bool
return bool
        bool Value()
        {
            uint val = ActionArgumentValueBool(iHandle);
            return (val != 0);
        }
    }