Skip to content

Latest commit

 

History

History
60 lines (44 loc) · 1.51 KB

icordebugmanagedcallback-controlctrap-method.md

File metadata and controls

60 lines (44 loc) · 1.51 KB
description title ms.date api_name api_location api_type f1_keywords helpviewer_keywords ms.assetid topic_type
Learn more about: ICorDebugManagedCallback::ControlCTrap Method
ICorDebugManagedCallback::ControlCTrap Method
03/30/2017
ICorDebugManagedCallback.ControlCTrap
mscordbi.dll
COM
ICorDebugManagedCallback::ControlCTrap
ICorDebugManagedCallback::ControlCTrap method [.NET Framework debugging]
ControlCTrap method [.NET Framework debugging]
0500854e-2121-43d9-a028-64312da35258
apiref

ICorDebugManagedCallback::ControlCTrap Method

Notifies the debugger that a CTRL+C is trapped in the process that is being debugged.

Syntax

HRESULT ControlCTrap (
    [in] ICorDebugProcess *pProcess
);

Parameters

pProcess [in] A pointer to an ICorDebugProcess object that represents the process in which the CTRL+C is trapped.

Return Value

HRESULT Description
S_OK The debugger will handle the CTRL+C trap.
S_FALSE The debugger will not handle the CTRL+C trap.

Remarks

All application domains within the process are stopped for this callback.

Requirements

Platforms: See System Requirements.

Header: CorDebug.idl, CorDebug.h

Library: CorGuids.lib

.NET Framework Versions: [!INCLUDEnet_current_v10plus]

See also