You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dotnet/src/webdriver/CommandInfoRepository.cs
+1
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,7 @@ public bool IsCommandNameDefined(string commandName)
87
87
/// </summary>
88
88
/// <param name="commandName">The <see cref="DriverCommand"/> for which to get the information.</param>
89
89
/// <returns>The <see cref="HttpCommandInfo"/> for the specified command, or <see langword="null"/> if not found or value is not <typeparamref name="T"/>.</returns>
90
+
/// <exception cref="ArgumentNullException">If <paramref name="commandName"/> is <see langword="null"/>.</exception>
/// <param name="driverCommandToExecute">A <see cref="DriverCommand"/> value representing the command to execute.</param>
590
592
/// <param name="parameters">A <see cref="Dictionary{K, V}"/> containing the names and values of the parameters of the command.</param>
591
593
/// <returns>A <see cref="Response"/> containing information about the success or failure of the command and any data returned by the command.</returns>
594
+
/// <exception cref="ArgumentNullException">If <paramref name="driverCommandToExecute"/> is <see langword="null"/>.</exception>
/// <param name="driverCommandToExecute">A <see cref="DriverCommand"/> value representing the command to execute.</param>
602
605
/// <param name="parameters">A <see cref="Dictionary{K, V}"/> containing the names and values of the parameters of the command.</param>
603
606
/// <returns>A <see cref="Response"/> containing information about the success or failure of the command and any data returned by the command.</returns>
607
+
/// <exception cref="ArgumentNullException">If <paramref name="driverCommandToExecute"/> is <see langword="null"/>.</exception>
0 commit comments