The ExecProcess type exposes the following members.
Back to Top
Back to Top
Back to Top
Constructors
Name | Description | |
---|---|---|
ExecProcess |
Initializes a new instance of
the ExecProcess class.
|
Methods
Name | Description | |
---|---|---|
Equals | (Inherited from Object.) | |
Finalize |
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.) | |
GetHashCode |
Serves as a hash function for a particular type.
(Inherited from Object.) | |
GetType |
Gets the Type of the current instance.
(Inherited from Object.) | |
MemberwiseClone |
Creates a shallow copy of the current Object.
(Inherited from Object.) | |
RunProcess |
Runs the process.
| |
ToString | (Inherited from Object.) |
Properties
Name | Description | |
---|---|---|
CollectJointOutput |
Indicates whether to collect STDOUT and STDERR messages
jointly.
Alternatively, you may collect either one individually
via CollectStdOut or CollectStdErr.
| |
CollectStdErr |
Indicates whether to collect STDERR messages individually.
Alternatively, you may collect them jointly with
STDOUT messages, in temporal order.
| |
CollectStdOut |
Indicates whether to collect STDOUT messages individually.
Alternatively, you may collect them jointly with
STDERR messages, in temporal order.
| |
ErrPrefix |
String to prefix messages from STDERR
in the joint STDOUT/STDERR collection.
| |
JointOutput |
Gets the joint stdout and stderr output as a List T | |
StderrOutput |
Gets the stderr output as a List T | |
StdoutOutput |
Gets the stdout output as a List T |
See Also