Executes a command on this element using the specified parameters. The to execute against this element. A containing names and values of the parameters for the command. The object containing the result of the command
(string commandToExecute, Dictionary<string,
#nullable disable
object
#nullable enable
>? parameters)
| 702 | /// <param name="parameters">A <see cref="Dictionary{K, V}"/> containing names and values of the parameters for the command.</param> |
| 703 | /// <returns>The <see cref="Response"/> object containing the result of the command execution.</returns> |
| 704 | protected virtual Response Execute(string commandToExecute, Dictionary<string, |
| 705 | #nullable disable |
| 706 | object |
| 707 | #nullable enable |
| 708 | >? parameters) |
| 709 | { |
| 710 | return this.driver.Execute(commandToExecute, parameters); |
| 711 | } |
| 712 | |
| 713 | private static string GetWrappedAtom(string name, string content) |
| 714 | { |
no outgoing calls
no test coverage detected