IDkmCustomStopReceived.OnCustomStopReceived Method

Definition

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

public:
 void OnCustomStopReceived(Microsoft::VisualStudio::Debugger::DkmCustomMessage ^ customMessage, Microsoft::VisualStudio::Debugger::DkmThread ^ thread, Guid vsService, Microsoft::VisualStudio::Debugger::DkmEventDescriptorS ^ eventDescriptor);
public void OnCustomStopReceived (Microsoft.VisualStudio.Debugger.DkmCustomMessage customMessage, Microsoft.VisualStudio.Debugger.DkmThread thread, Guid vsService, Microsoft.VisualStudio.Debugger.DkmEventDescriptorS eventDescriptor);
abstract member OnCustomStopReceived : Microsoft.VisualStudio.Debugger.DkmCustomMessage * Microsoft.VisualStudio.Debugger.DkmThread * Guid * Microsoft.VisualStudio.Debugger.DkmEventDescriptorS -> unit
Public Sub OnCustomStopReceived (customMessage As DkmCustomMessage, thread As DkmThread, vsService As Guid, eventDescriptor As DkmEventDescriptorS)

Parameters

customMessage
DkmCustomMessage

[In] Message structure used to pass information between custom debugger backend components and custom visual studio UI components (packages, add-ins, etc).

thread
DkmThread

[In] DkmThread represents a thread running in the target process.

vsService
Guid

[In] Visual Studio service that this event should be sent to. A VS package must register this service id (ex: Software\Microsoft\VisualStudio$(ver)\Services{VsService}) and this package must implement the IVsCustomDebuggerStoppingEventHandler110 interface.

eventDescriptor
DkmEventDescriptorS

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

Applies to