OpenHome.Net.ControlPoint.Invocation.OutputInt C# (CSharp) Method

OutputInt() public static method

Utility to retrieve the value of an integer type output argument
public static OutputInt ( IntPtr aHandle, uint aIndex ) : int
aHandle System.IntPtr Invocation handle
aIndex uint Zero-based index into array of output arguments. /// Must refer to an ArgumentInt.
return int
        public static int OutputInt(IntPtr aHandle, uint aIndex)
        {
            return CpInvocationOutputInt(aHandle, aIndex);
        }