OpenHome.Net.ControlPoint.Invocation.OutputBool C# (CSharp) Méthode

OutputBool() public static méthode

Utility to retrieve the value of a boolean type output argument
public static OutputBool ( IntPtr aHandle, uint aIndex ) : bool
aHandle System.IntPtr Invocation handle
aIndex uint Zero-based index into array of output arguments. /// Must refer to an ArgumentBool.
Résultat bool
        public static bool OutputBool(IntPtr aHandle, uint aIndex)
        {
            uint val = CpInvocationOutputBool(aHandle, aIndex);
            return (val != 0);
        }