Skip to content

Latest commit

 

History

History
53 lines (39 loc) · 1.65 KB

cordebugstatechange-enumeration.md

File metadata and controls

53 lines (39 loc) · 1.65 KB
description title ms.date api_name api_location api_type ms.assetid topic_type
Learn more about: CorDebugStateChange Enumeration
CorDebugStateChange Enumeration
02/07/2019
CorDebugStateChange
mscordbi.dll
COM
1d4424ab-5143-4e50-a84a-ceeb4ddf3bba
apiref

CorDebugStateChange Enumeration

Describes the amount of cached data that must be discarded based on changes to the process.

Syntax

typedef enum CorDebugStateChange
{
    PROCESS_RUNNING = 0x0000001,
    FLUSH_ALL       = 0x0000002,
} CorDebugStateChange;

Members

Member Description
PROCESS_RUNNING The process reached a new memory state via forward execution.
FLUSH_ALL The process' memory may be arbitrarily different than it was previously.

Remarks

A member of the CorDebugStateChange enumeration is provided as an argument when the debugger calls the ProcessStateChanged method either with ICorDebugProcess4::ProcessStateChanged or ICorDebugProcess6::ProcessStateChanged

Requirements

Platforms: See System Requirements.

Header: CorDebug.idl, CorDebug.h

Library: CorGuids.lib

.NET Framework Versions: [!INCLUDEnet_current_v45plus]

See also