public Task<int?> RunCommandAsync(
string? commandName,
string[] args,
int index
)
Public Function RunCommandAsync (
commandName As String,
args As String(),
index As Integer
) As Task(Of Integer?)
Dim instance As CommandManager
Dim commandName As String
Dim args As String()
Dim index As Integer
Dim returnValue As Task(Of Integer?)
returnValue = instance.RunCommandAsync(commandName,
args, index)
public:
Task<Nullable<int>>^ RunCommandAsync(
String^ commandName,
array<String^>^ args,
int index
)
This function creates the command by invoking the CreateCommand(String, 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. |