Interface IProcessBuilder
Provides a fluent API on top of System.
Namespace: Snowflake.Orchestration.Process
Assembly: Snowflake.Framework.Primitives.dll
Syntax
public interface IProcessBuilder
Methods
ToProcessStartInfo()
Create a System.
Declaration
ProcessStartInfo ToProcessStartInfo()
Returns
Type | Description |
---|---|
System. |
The System. |
WithArgument(String)
Adds a switch type argument to the launching process.
Declaration
IProcessBuilder WithArgument(string switchName)
Parameters
Type | Name | Description |
---|---|---|
System. |
switchName | The argument to add. |
Returns
Type | Description |
---|---|
IProcess |
The instance of IProcess |
WithArgument(String, String, Boolean)
Adds a space separated parameter-type argument to the launching process.
Declaration
IProcessBuilder WithArgument(string parameterName, string value, bool quoted = true)
Parameters
Type | Name | Description |
---|---|---|
System. |
parameterName | The name of the parameter, |
System. |
value | The value of the argument. |
System. |
quoted | Whether or not the value is enclosed in double quotes. |
Returns
Type | Description |
---|---|
IProcess |
The instance of IProcess |