GetUserObjectInformation (user32)
Last changed: -66.103.226.30

.
Summary

C# Signature:

[DllImport("user32.dll", SetLastError=true)]
static extern bool GetUserObjectInformation(IntPtr hObj, int nIndex,
   [Out] byte [] pvInfo, uint nLength, out uint lpnLengthNeeded);

VB.NET Signature:

  <DllImport("user32.dll", SetLastError:=True)> _
  Private Shared Function GetUserObjectInformation(ByVal hObj As IntPtr, ByVal nIndex As Int32, ByRef pvInfo As Byte(), <MarshalAs(UnmanagedType.I4)> ByVal nLength As Integer, <MarshalAs(UnmanagedType.I4)> ByRef lpnLengthNeeded As Integer) As Boolean
  End Function

User-Defined Types:

None.

Notes:

VB.NET version requires this line at the top of the code module for the 'MarshalAs' attribute:

    Imports System.Runtime.InteropServices

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Documentation