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

OutputUint() public static method

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