IDkmDebugMonitorExceptionNotification.OnDebugMonitorException Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
OnDebugMonitorException is invoked as part of event processing. See interface definition for more information.
public:
void OnDebugMonitorException(Microsoft::VisualStudio::Debugger::Exceptions::DkmExceptionInformation ^ exception, Microsoft::VisualStudio::Debugger::DkmWorkList ^ workList, Microsoft::VisualStudio::Debugger::DkmEventDescriptorS ^ eventDescriptor);
public void OnDebugMonitorException (Microsoft.VisualStudio.Debugger.Exceptions.DkmExceptionInformation exception, Microsoft.VisualStudio.Debugger.DkmWorkList workList, Microsoft.VisualStudio.Debugger.DkmEventDescriptorS eventDescriptor);
abstract member OnDebugMonitorException : Microsoft.VisualStudio.Debugger.Exceptions.DkmExceptionInformation * Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmEventDescriptorS -> unit
Public Sub OnDebugMonitorException (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.