DkmProcessLaunchRequest.ResumeProcess Method

Definition

Overloads

ResumeProcess()

This API is used to resume a process which was launched from CreateProcess with the LaunchSuspended flag set to true.

ResumeProcess(DkmProcess)

This API is used to resume a process which was launched from CreateProcess with the LaunchSuspended flag set to true.

This API was introduced in Visual Studio 15 Update 3 (DkmApiVersion.VS15Update3).

ResumeProcess()

This API is used to resume a process which was launched from CreateProcess with the LaunchSuspended flag set to true.

public:
 void ResumeProcess();
public:
 void ResumeProcess();
void ResumeProcess();
public void ResumeProcess ();
member this.ResumeProcess : unit -> unit
Public Sub ResumeProcess ()

Applies to

ResumeProcess(DkmProcess)

This API is used to resume a process which was launched from CreateProcess with the LaunchSuspended flag set to true.

This API was introduced in Visual Studio 15 Update 3 (DkmApiVersion.VS15Update3).

public:
 void ResumeProcess(Microsoft::VisualStudio::Debugger::DkmProcess ^ Process);
public void ResumeProcess (Microsoft.VisualStudio.Debugger.DkmProcess Process);
member this.ResumeProcess : Microsoft.VisualStudio.Debugger.DkmProcess -> unit
Public Sub ResumeProcess (Process As DkmProcess)

Parameters

Process
DkmProcess

[In] The process that should be resumed.

Applies to