ParentCommandRunAsync Method

Runs the child command that was instantiated by the Parse(ReadOnlyMemoryString, CommandManager) method asynchronously.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
C#
public virtual Task<int> RunAsync(
	CancellationToken cancellationToken
)

Parameters

cancellationToken  CancellationToken
The token to monitor for cancellation requests.

Return Value

TaskInt32
A task that represents the asynchronous run operation. The result of the task is the exit code of the child command, or the value of the FailureExitCode property if no child command was created.

Implements

IAsyncCommandRunAsync(CancellationToken)

See Also