ICLRDataEnumMemoryRegions::EnumMemoryRegions Method

Enumerates specified areas of memory.

Syntax

HRESULT EnumMemoryRegions (  
    [in] ICLRDataEnumMemoryRegionsCallback  *callback,  
    [in] ULONG32                            miniDumpFlags,  
    [in] CLRDataEnumMemoryFlags             clrFlags  
);  

Parameters

callback
[in] A pointer to an ICLRDataEnumMemoryRegionsCallback instance that is called by this method for each memory region being enumerated to notify the debugger of the result.

The enumeration of memory regions continues even if the callback indicates a failure.

miniDumpFlags
[in] Not used.

clrFlags
[in] A value of the CLRDataEnumMemoryFlags enumeration that specifies the regions of memory to be enumerated.

Remarks

This method uses the specified ICLRDataEnumMemoryRegionsCallback instance to notify the caller of results.

Requirements

Platforms: See System Requirements.

Header: ClrData.idl, ClrData.h

Library: CorGuids.lib

.NET Framework Versions: Available since 2.0

See also