Hex1bTerminalProcessOptions
Namespace: Hex1b
Assembly: Hex1b.dll
Options for configuring a child process workload.
csharp
public sealed class Hex1bTerminalProcessOptionsInheritance
Object → Hex1bTerminalProcessOptions
Properties
Arguments
Gets or sets the command-line arguments for the process.
Returns: IList<String>
csharp
public IList<string>? Arguments { get; set; }Environment
Gets or sets additional environment variables for the process.
Returns: IDictionary<String, String>
csharp
public IDictionary<string, string>? Environment { get; set; }FileName
Gets or sets the executable to run.
Returns: String
csharp
public string FileName { get; set; }InheritEnvironment
Gets or sets whether to inherit the parent's environment variables. Defaults to true.
Returns: Boolean
csharp
public bool InheritEnvironment { get; set; }WorkingDirectory
Gets or sets the working directory for the process. If null, uses the current directory.
Returns: String
csharp
public string? WorkingDirectory { get; set; }