IDkmOutOfBandExceptionNotification.OnOutOfBandException Method

Definition

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

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

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
DkmEventDescriptorS

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

Applies to