Class CommandRunner
Formats and executes a piactl
command line command.
public class CommandRunner : ICommandRunner
- Inheritance
-
CommandRunner
- Implements
- Inherited Members
Methods
Run(ExecuteDelegate, Command, DaemonAction, PiaCtlOptions, bool)
Formats and executes a piactl
command line command.
public Task<PiaResults> Run(ExecuteDelegate execute, Command command, DaemonAction action, PiaCtlOptions options, bool debug = false)
Parameters
execute
ExecuteDelegateA delegate representing the process call to execute the
piactl
command line utilitycommand
CommandA Command enum value representing a top-level piactl command.
action
DaemonActionA DaemonAction enum value representing a specific action to be taken by the PIA daemon.
options
PiaCtlOptionsA PiaCtlOptions instance.
debug
boolPrint debug logs to stderr.
Returns
- Task<PiaResults>
A
Task<PiaResults>
containing standard output and standard error results.
Run(ExecuteDelegate, Command, DaemonAction, bool, PiaCtlOptions, bool)
Formats and executes a piactl
command line command.
public Task<PiaResults> Run(ExecuteDelegate execute, Command command, DaemonAction action, bool argument, PiaCtlOptions options, bool debug = false)
Parameters
execute
ExecuteDelegateA delegate representing the process call to execute the
piactl
command line utilitycommand
CommandA Command enum value representing a top-level piactl command.
action
DaemonActionA DaemonAction enum value representing a specific action to be taken by the PIA daemon.
argument
boolA bool argument to be passed to the piactl daemon.
options
PiaCtlOptionsA PiaCtlOptions instance.
debug
boolPrint debug logs to stderr.
Returns
- Task<PiaResults>
A
Task<PiaResults>
containing standard output and standard error results.
Run(ExecuteDelegate, Command, DaemonAction, string, PiaCtlOptions, bool)
Formats and executes a piactl
command line command.
public Task<PiaResults> Run(ExecuteDelegate execute, Command command, DaemonAction action, string argument, PiaCtlOptions options, bool debug = false)
Parameters
execute
ExecuteDelegateA delegate representing the process call to execute the
piactl
command line utilitycommand
CommandA Command enum value representing a top-level piactl command.
action
DaemonActionA DaemonAction enum value representing a specific action to be taken by the PIA daemon.
argument
stringA string argument to be passed to the piactl daemon.
options
PiaCtlOptionsA PiaCtlOptions instance.
debug
boolPrint debug logs to stderr.
Returns
- Task<PiaResults>
A
Task<PiaResults>
containing standard output and standard error results.
Run(ExecuteDelegate, Command, DaemonAction, string, string, PiaCtlOptions, bool)
Formats and executes a piactl
command line command.
public Task<PiaResults> Run(ExecuteDelegate execute, Command command, DaemonAction action, string argument1, string argument2, PiaCtlOptions options, bool debug = false)
Parameters
execute
ExecuteDelegateA delegate representing the process call to execute the
piactl
command line utilitycommand
CommandA Command enum value representing a top-level piactl command.
action
DaemonActionA DaemonAction enum value representing a specific action to be taken by the PIA daemon.
argument1
stringA string argument to be passed to the piactl daemon.
argument2
stringA string argument to be passed to the piactl daemon.
options
PiaCtlOptionsA PiaCtlOptions instance.
debug
boolPrint debug logs to stderr.
Returns
- Task<PiaResults>
A
Task<PiaResults>
containing standard output and standard error results.
Run(ExecuteTimedDelegate, Command, DaemonAction, uint, PiaCtlOptions, bool)
Formats and executes a piactl
command line command.
public Task<PiaResults> Run(ExecuteTimedDelegate execute, Command command, DaemonAction action, uint argument, PiaCtlOptions options, bool debug = false)
Parameters
execute
ExecuteTimedDelegateA delegate representing the process call to execute the
piactl
command line utilitycommand
CommandA Command enum value representing a top-level piactl command.
action
DaemonActionA DaemonAction enum value representing a specific action to be taken by the PIA daemon.
argument
uintA uint argument to be passed to the Command Line Wrapper
options
PiaCtlOptionsA PiaCtlOptions instance.
debug
boolPrint debug logs to stderr.
Returns
- Task<PiaResults>
A
Task<PiaResults>
containing standard output and standard error results.