ParentCommandRunAsync Method
Namespace: Ookii.CommandLine.CommandsAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
public virtual Task<int> RunAsync(
CancellationToken cancellationToken
)
Public Overridable Function RunAsync (
cancellationToken As CancellationToken
) As Task(Of Integer)
Dim instance As ParentCommand
Dim cancellationToken As CancellationToken
Dim returnValue As Task(Of Integer)
returnValue = instance.RunAsync(cancellationToken)
public:
virtual Task<int>^ RunAsync(
CancellationToken cancellationToken
)
- cancellationToken CancellationToken
- The token to monitor for cancellation requests.
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.
IAsyncCommandRunAsync(CancellationToken)