Executes a command with this driver. A value representing the command to execute. A containing the names and values of the parameters of the command. A containing information about the success or failure of the
(string driverCommandToExecute, Dictionary<string, object?>? parameters)
| 560 | /// <returns>A <see cref="Response"/> containing information about the success or failure of the command and any data returned by the command.</returns> |
| 561 | /// <exception cref="ArgumentNullException">If <paramref name="driverCommandToExecute"/> is <see langword="null"/>.</exception> |
| 562 | protected internal virtual Response Execute(string driverCommandToExecute, Dictionary<string, object?>? parameters) |
| 563 | { |
| 564 | return Task.Run(() => this.ExecuteAsync(driverCommandToExecute, parameters)).GetAwaiter().GetResult(); |
| 565 | } |
| 566 | |
| 567 | /// <summary> |
| 568 | /// Executes a command with this driver. |
no test coverage detected