IDkmDeploymentCommandCallback.OnStdErr(DkmDeploymentCommand, String) Method

Definition

Indication that the target wrote to stderr. This will not be used if the DkmDeploymentCommandFlags.CombineStdErr flag is used. Note that the output from stderr and stdout is not synchronized, so if a program writes to stdout before stderr, a listener may still get the stderr output first (or vice versa).

public:
 void OnStdErr(Microsoft::VisualStudio::Debugger::DefaultPort::DkmDeploymentCommand ^ deploymentCommand, System::String ^ text);
public void OnStdErr (Microsoft.VisualStudio.Debugger.DefaultPort.DkmDeploymentCommand deploymentCommand, string text);
abstract member OnStdErr : Microsoft.VisualStudio.Debugger.DefaultPort.DkmDeploymentCommand * string -> unit
Public Sub OnStdErr (deploymentCommand As DkmDeploymentCommand, text As String)

Parameters

deploymentCommand
DkmDeploymentCommand

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

text
String

[In] Text written to stderr.

Applies to