public Task<int?> RunCommandAsync(
string[] args,
int index = 0
)
Public Function RunCommandAsync (
args As String(),
Optional index As Integer = 0
) As Task(Of Integer?)
Dim instance As CommandManager
Dim args As String()
Dim index As Integer
Dim returnValue As Task(Of Integer?)
returnValue = instance.RunCommandAsync(args,
index)
public:
Task<Nullable<int>>^ RunCommandAsync(
array<String^>^ args,
int index = 0
)
This function creates the command by invoking the CreateCommand(String, Int32), method. If the command implements the IAsyncCommand interface, it invokes the RunAsync method; otherwise, it invokes the Run method on the command.
ArgumentNullException | args is |
ArgumentOutOfRangeException | index does not fall inside the bounds of args. |