CommandExecute(String, String, String, String, Int32) Method

Executes a command line operation and returns true if there was no standard error reported.

Definition

Namespace: Gemstone.Console
Assembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
public static bool Execute(
	string fileName,
	string arguments,
	out string standardOutput,
	out string standardError,
	out int exitCode
)

Parameters

fileName  String
Command line file name to execute.
arguments  String
Command line arguments to use, if any.
standardOutput  String
Any standard output reported by the command line operation.
standardError  String
Any standard error reported by the command line operation.
exitCode  Int32
Exit code of the process, assuming process successfully completed.

Return Value

Boolean
true if there was no standard error reported; otherwise, false.

Remarks

This function waits indefinitely for the command line operation to complete.

See Also