JOBOBJECT_EXTENDED_LIMIT_INFORMATION (kernel32)
Last changed: -203.62.208.2

.
Summary
Structure that contains basic and extended limit information for a job object.

C# Signature:

  [StructLayout(LayoutKind.Sequential)]
  struct JOBOBJECT_EXTENDED_LIMIT_INFORMATION
  {
    public JOBOBJECT_BASIC_LIMIT_INFORMATION BasicLimitInformation;
    public IO_COUNTERS IoInfo;
    public UIntPtr ProcessMemoryLimit;
    public UIntPtr JobMemoryLimit;
    public UIntPtr PeakProcessMemoryUsed;
    public UIntPtr PeakJobMemoryUsed;
  }

VB Signature:

  <StructLayout(LayoutKind.Sequential)> _
  Structure JOBOBJECT_EXTENDED_LIMIT_INFORMATION
    Public BasicLimitInformation As JOBOBJECT_BASIC_LIMIT_INFORMATION
    Public IoInfo As IO_COUNTERS
    Public ProcessMemoryLimit As UIntPtr
    Public JobMemoryLimit As UIntPtr
    Public PeakProcessMemoryUsed As UIntPtr
    Public PeakJobMemoryUsed As UIntPtr
  End Structure

User-Defined Types:

JOBOBJECT_BASIC_LIMIT_INFORMATION

IO_COUNTERS

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation