Share via


ICorDebugManagedCallback::DebuggerError Method

Notifies the debugger that an error has occurred while attempting to handle an event from the common language runtime (CLR).

HRESULT DebuggerError (
    [in] ICorDebugProcess *pProcess,
    [in] HRESULT           errorHR,
    [in] DWORD             errorCode
);

Parameters

  • errorHR
    [in] The HRESULT value that was returned from the event handler.
  • errorCode
    [in] An integer that specifies the CLR error.

Remarks

The process may be placed into pass-through mode, depending on the nature of the error.

The DebugError callback indicates that debugging services have been disabled due to an error, so debuggers should make the error message available to the user. ICorDebugProcess::GetID Method will be safe to call, but all other methods, including ICorDebug::Terminate Method, should not be called. The debugger should use operating-system facilities for terminating processes.

Requirements

Platforms: Windows 2000, Windows XP, Windows Server 2003 family

Header: CorDebug.idl

Library: CorGuids.lib

.NET Framework Version: 2.0, 1.1, 1.0

See Also

Reference

ICorDebugManagedCallback Interface