CommandExecute(String, String, Int32) Method

Executes a command line operation and returns its standard output and exit code or throws an exception with the standard error.

Definition

Namespace: Gemstone.Console
Assembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.150 -- Release Build+64e3b411e1abfbd2d4d8a81e850c3909a0ce8731
public static CommandResponse Execute(
	string fileName,
	string? arguments = null,
	int timeout = -1
)

Parameters

fileName  String
Command line file name to execute.
arguments  String  (Optional)
Command line arguments to use, if any.
timeout  Int32  (Optional)
Timeout, in milliseconds, to wait for command line operation to complete.

Return Value

CommandResponse
A CommandResponse containing the standard output received from command and the exit code.

Exceptions

CommandException Exception occurs when executed command process reports standard error output or process times-out.

See Also