ICorDebugMutableDataTarget::ContinueStatusChanged Method

Changes the continuation status for the outstanding debug event on the specified thread.

Syntax

HRESULT ContinueStatusChanged(  
   [in] DWORD dwThreadId,  
   [in] CORDB_CONTINUE_STATUS continueStatus);  

Parameters

dwThreadId
The operating system-defined thread identifier.

continueStatus
A COREDB_CONTINUE_STATUS value that represents the new requested continuation status.

Remarks

The debugger calls the ContinueStatusChanged method when it calls an ICorDebug method that requires the current debug event to be handled in a way that is potentially different from the way in which it normally would be handled. For example, if there is an outstanding exception, and the debugger requests an operation that would cancel the exception (such as ICorDebugILFrame::SetIP or FuncEval), this API is used to request that the exception be cancelled.

Requirements

Platforms: See System Requirements.

Header: CorDebug.idl, CorDebug.h

Library: CorGuids.lib

.NET Framework Versions: Available since 4.6

See also