Class ProcessRunResult
Represents the result of running an external process.
Inherited Members
Namespace: Coree.NETStandard.Services.ProcessManagement
Assembly: Coree.NETStandard.dll
Syntax
public class ProcessRunResult
Properties
| Edit this page View SourceArguments
Gets or sets the arguments passed to the executable.
Declaration
public string? Arguments { get; set; }
Property Value
Type | Description |
---|---|
string |
Commandline
Gets or sets the command line used to start the process.
Declaration
public string? Commandline { get; set; }
Property Value
Type | Description |
---|---|
string |
ExitCode
Gets or sets the exit code returned by the process.
Declaration
public int ExitCode { get; set; }
Property Value
Type | Description |
---|---|
int |
ExitCodeState
Gets or sets the state of the exit code indicating the outcome of the process run.
Declaration
public ProcessRunExitCodeState ExitCodeState { get; set; }
Property Value
Type | Description |
---|---|
ProcessRunExitCodeState |
Filename
Gets or sets the file name of the executable that was run.
Declaration
public string? Filename { get; set; }
Property Value
Type | Description |
---|---|
string |
Output
Gets or sets the output (both stdout and stderr) of the process.
Declaration
public string? Output { get; set; }
Property Value
Type | Description |
---|---|
string |