CliParserRunAsync(String, CancellationToken) Method

Parses a command line string array and runs the handler asynchronously for the indicated command.

Definition

Namespace: DotMake.CommandLine
Assembly: DotMake.CommandLine (in DotMake.CommandLine.dll) Version: 2.6.6
C#
public Task<int> RunAsync(
	string[] args = null,
	CancellationToken cancellationToken = default
)

Parameters

args  String  (Optional)
The string array typically passed to a program. This is usually the special variable args available in Program.cs (new style with top-level statements) or the string array passed to the program's Main method (old style). If not specified or , args will be retrieved automatically from the current process via GetArgs.
cancellationToken  CancellationToken  (Optional)
The token to monitor for cancellation requests.

Return Value

TaskInt32
The exit code for the invocation.

See Also