Table of Contents

Class CommandRunner

Namespace
Cmpnnt.Pia.Ctl.Lib
Assembly
Cmpnnt.Pia.Ctl.dll

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 ExecuteDelegate

A delegate representing the process call to execute the piactl command line utility

command Command

A Command enum value representing a top-level piactl command.

action DaemonAction

A DaemonAction enum value representing a specific action to be taken by the PIA daemon.

options PiaCtlOptions

A PiaCtlOptions instance.

debug bool

Print 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 ExecuteDelegate

A delegate representing the process call to execute the piactl command line utility

command Command

A Command enum value representing a top-level piactl command.

action DaemonAction

A DaemonAction enum value representing a specific action to be taken by the PIA daemon.

argument bool

A bool argument to be passed to the piactl daemon.

options PiaCtlOptions

A PiaCtlOptions instance.

debug bool

Print 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 ExecuteDelegate

A delegate representing the process call to execute the piactl command line utility

command Command

A Command enum value representing a top-level piactl command.

action DaemonAction

A DaemonAction enum value representing a specific action to be taken by the PIA daemon.

argument string

A string argument to be passed to the piactl daemon.

options PiaCtlOptions

A PiaCtlOptions instance.

debug bool

Print 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 ExecuteDelegate

A delegate representing the process call to execute the piactl command line utility

command Command

A Command enum value representing a top-level piactl command.

action DaemonAction

A DaemonAction enum value representing a specific action to be taken by the PIA daemon.

argument1 string

A string argument to be passed to the piactl daemon.

argument2 string

A string argument to be passed to the piactl daemon.

options PiaCtlOptions

A PiaCtlOptions instance.

debug bool

Print 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 ExecuteTimedDelegate

A delegate representing the process call to execute the piactl command line utility

command Command

A Command enum value representing a top-level piactl command.

action DaemonAction

A DaemonAction enum value representing a specific action to be taken by the PIA daemon.

argument uint

A uint argument to be passed to the Command Line Wrapper

options PiaCtlOptions

A PiaCtlOptions instance.

debug bool

Print debug logs to stderr.

Returns

Task<PiaResults>

A Task<PiaResults> containing standard output and standard error results.