IDkmClrDebugMonitorExceptionCaughtNotification.OnClrDebugMonitorExceptionCaught Method

Definition

OnClrDebugMonitorExceptionCaught is invoked as part of event processing. See interface definition for more information.

public:
 void OnClrDebugMonitorExceptionCaught(Microsoft::VisualStudio::Debugger::Clr::DkmClrCaughtExceptionInformation ^ clrCaughtException, Microsoft::VisualStudio::Debugger::DkmWorkList ^ workList, Microsoft::VisualStudio::Debugger::DkmEventDescriptorS ^ eventDescriptor);
public void OnClrDebugMonitorExceptionCaught (Microsoft.VisualStudio.Debugger.Clr.DkmClrCaughtExceptionInformation clrCaughtException, Microsoft.VisualStudio.Debugger.DkmWorkList workList, Microsoft.VisualStudio.Debugger.DkmEventDescriptorS eventDescriptor);
abstract member OnClrDebugMonitorExceptionCaught : Microsoft.VisualStudio.Debugger.Clr.DkmClrCaughtExceptionInformation * Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmEventDescriptorS -> unit
Public Sub OnClrDebugMonitorExceptionCaught (clrCaughtException As DkmClrCaughtExceptionInformation, workList As DkmWorkList, eventDescriptor As DkmEventDescriptorS)

Parameters

clrCaughtException
DkmClrCaughtExceptionInformation

[In] Provides information about an exception which was caught in the target process. This information includes details of the exception that was caught.

workList
DkmWorkList

WorkList to append additional event processing work to. This work list will begin execution after all listeners have been notifiied. The event will not finish until after the work list fully executes.

eventDescriptor
DkmEventDescriptorS

[In] Describes the event being processed and provides the ability for a component to suppress this event.

Applies to