DkmProcess.IsStopped Method

Definition

This method allows a component to determined if the process is considered stopped by the Dispatcher. This method does not need to be called from within an interface method which requires the target process to be stopped, but it may be helpful during operations which may be called from run mode.

public:
 bool IsStopped();
public:
 bool IsStopped();
bool IsStopped();
public bool IsStopped ();
member this.IsStopped : unit -> bool
Public Function IsStopped () As Boolean

Returns

[Out] Returns true if the process is considered stopped. This will return true on request threads after the debugger has sent a stopping event (ex: breakpoint hit) to the IDE and before the process has been resumed. It will return true on event threads if a pausing event (ex: module load) or stopping event (ex: breakpoint hit) is being processed.

Applies to