IDkmDeploymentCommandCallback.OnProcessExit Method

Definition

Indication that the launched command has completed. After this is received, no further notifications will be sent.

public:
 void OnProcessExit(Microsoft::VisualStudio::Debugger::DefaultPort::DkmDeploymentCommand ^ deploymentCommand, int exitCode);
public void OnProcessExit (Microsoft.VisualStudio.Debugger.DefaultPort.DkmDeploymentCommand deploymentCommand, int exitCode);
abstract member OnProcessExit : Microsoft.VisualStudio.Debugger.DefaultPort.DkmDeploymentCommand * int -> unit
Public Sub OnProcessExit (deploymentCommand As DkmDeploymentCommand, exitCode As Integer)

Parameters

deploymentCommand
DkmDeploymentCommand

[In] Object representing an arbitrary executable which is executed on the target computer.

exitCode
Int32

[In] 32-bit value which the processed returned on exit. This is the same value that would be reported from the kernel32!GetExitCodeProcess.

Applies to