SnapshotFlags (Enums)
Last changed: -87.82.247.18

.
Summary

C# Definition:

[Flags]
public enum SnapshotFlags : uint
{
    HeapList = 0x00000001,
    Process  = 0x00000002,
    Thread   = 0x00000004,
    Module   = 0x00000008,
    Module32 = 0x00000010,
    Inherit  = 0x80000000,
    All      = 0x0000001F
}

VB Definition:

Enum SnapshotFlags
    HeapList = &h00000001,
    Process  = &h00000002,
    Thread   = &h00000004,
    Module   = &h00000008,
    Module32 = &h00000010,
    Inherit  = &h00000000,
    All      = &h0000001F
End Enum

Notes:

None.

Documentation