IDkmExceptionContinuedNotification.OnExceptionContinued Method

Definition

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

public:
 void OnExceptionContinued(Microsoft::VisualStudio::Debugger::Exceptions::DkmExceptionInformation ^ exception, Microsoft::VisualStudio::Debugger::DkmWorkList ^ workList, Microsoft::VisualStudio::Debugger::DkmEventDescriptor ^ eventDescriptor);
public void OnExceptionContinued (Microsoft.VisualStudio.Debugger.Exceptions.DkmExceptionInformation exception, Microsoft.VisualStudio.Debugger.DkmWorkList workList, Microsoft.VisualStudio.Debugger.DkmEventDescriptor eventDescriptor);
abstract member OnExceptionContinued : Microsoft.VisualStudio.Debugger.Exceptions.DkmExceptionInformation * Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmEventDescriptor -> unit
Public Sub OnExceptionContinued (exception As DkmExceptionInformation, workList As DkmWorkList, eventDescriptor As DkmEventDescriptor)

Parameters

exception
DkmExceptionInformation

[In] Provides information about an exception which was raised in the target process. This information includes details of what exception was raised and the current stage of exception processing.

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
DkmEventDescriptor

[In] Describes the event being processed.

Applies to