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