IDkmAsyncBreakCompleteReceived.OnAsyncBreakCompleteReceived Method

Definition

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

public:
 void OnAsyncBreakCompleteReceived(Microsoft::VisualStudio::Debugger::DkmProcess ^ process, Microsoft::VisualStudio::Debugger::DkmAsyncBreakStatus status, Microsoft::VisualStudio::Debugger::DkmThread ^ thread, Microsoft::VisualStudio::Debugger::DkmEventDescriptorS ^ eventDescriptor);
public void OnAsyncBreakCompleteReceived (Microsoft.VisualStudio.Debugger.DkmProcess process, Microsoft.VisualStudio.Debugger.DkmAsyncBreakStatus status, Microsoft.VisualStudio.Debugger.DkmThread thread, Microsoft.VisualStudio.Debugger.DkmEventDescriptorS eventDescriptor);
abstract member OnAsyncBreakCompleteReceived : Microsoft.VisualStudio.Debugger.DkmProcess * Microsoft.VisualStudio.Debugger.DkmAsyncBreakStatus * Microsoft.VisualStudio.Debugger.DkmThread * Microsoft.VisualStudio.Debugger.DkmEventDescriptorS -> unit
Public Sub OnAsyncBreakCompleteReceived (process As DkmProcess, status As DkmAsyncBreakStatus, thread As DkmThread, eventDescriptor As DkmEventDescriptorS)

Parameters

process
DkmProcess

[In] DkmProcess represents a target process which is being debugged. The debugger debugs processes, so this is the basic unit of debugging. A DkmProcess can represent a system process or a virtual process such as minidumps.

status
DkmAsyncBreakStatus

[In] Indicates the type of async-break that occurred.

thread
DkmThread

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

eventDescriptor
DkmEventDescriptorS

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

Applies to