DkmProcess.OnAsyncBreakComplete(DkmAsyncBreakStatus, DkmThread) 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.
Raise a AsyncBreakComplete event. Components which implement the event sink interface will receive the event notification. This method will enqueue the event and control will immediately return to the caller.
public:
void OnAsyncBreakComplete(Microsoft::VisualStudio::Debugger::DkmAsyncBreakStatus Status, Microsoft::VisualStudio::Debugger::DkmThread ^ Thread);
public void OnAsyncBreakComplete (Microsoft.VisualStudio.Debugger.DkmAsyncBreakStatus Status, Microsoft.VisualStudio.Debugger.DkmThread Thread);
member this.OnAsyncBreakComplete : Microsoft.VisualStudio.Debugger.DkmAsyncBreakStatus * Microsoft.VisualStudio.Debugger.DkmThread -> unit
Public Sub OnAsyncBreakComplete (Status As DkmAsyncBreakStatus, Thread As DkmThread)
Parameters
- Status
- DkmAsyncBreakStatus
[In] Indicates the type of async-break that occurred.
- Thread
- DkmThread
[In] DkmThread represents a thread running in the target process.