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
/// Gets or sets the <see cref="IFileDetector"/> responsible for detecting
158
161
/// sequences of keystrokes representing file paths and names.
@@ -265,7 +268,6 @@ public object ExecuteCdpCommand(string commandName, Dictionary<string, object> c
265
268
/// <summary>
266
269
/// Creates a session to communicate with a browser using the Chromium Developer Tools debugging protocol.
267
270
/// </summary>
268
-
/// <param name="devToolsProtocolVersion">The version of the Chromium Developer Tools protocol to use. Defaults to autodetect the protocol version.</param>
269
271
/// <returns>The active session to use to communicate with the Chromium Developer Tools debugging protocol.</returns>
270
272
publicDevToolsSessionGetDevToolsSession()
271
273
{
@@ -435,6 +437,10 @@ public void StopCasting(string deviceName)
435
437
this.Execute(StopCastingCommand,parameters);
436
438
}
437
439
440
+
/// <summary>
441
+
/// Stops the driver from running
442
+
/// </summary>
443
+
/// <param name="disposing">if its in the process of disposing</param>
/// <typeparam name="TCommand">A command object implementing the <see cref="ICommand"/> interface.</typeparam>
166
+
/// <typeparam name="TCommandResponse">A response object implementing the <see cref="ICommandResponse"/> interface.</typeparam>
167
+
/// <param name="command">The command to send.</param>
164
168
/// <param name="cancellationToken">A CancellationToken object to allow for cancellation of the command.</param>
165
169
/// <param name="millisecondsTimeout">The execution timeout of the command in milliseconds.</param>
166
170
/// <param name="throwExceptionIfResponseNotReceived"><see langword="true"/> to throw an exception if a response is not received; otherwise, <see langword="false"/>.</param>
@@ -262,8 +266,8 @@ public T GetVersionSpecificDomains<T>() where T : DevToolsSessionDomains
262
266
}
263
267
264
268
/// <summary>
265
-
/// Disposes of the DevToolsSession and frees all resources.
266
-
///</summary>
269
+
/// Releases all resources associated with this <see cref="DevToolsSession"/>.
/// <typeparam name="TCommand">A command object implementing the <see cref="ICommand"/> interface.</typeparam>
68
+
/// <typeparam name="TCommandResponse">A response object implementing the <see cref="ICommandResponse"/> interface.</typeparam>
69
+
/// <param name="command">The command to send.</param>
70
70
/// <param name="cancellationToken">A CancellationToken object to allow for cancellation of the command.</param>
71
71
/// <param name="millisecondsTimeout">The execution timeout of the command in milliseconds.</param>
72
72
/// <param name="throwExceptionIfResponseNotReceived"><see langword="true"/> to throw an exception if a response is not received; otherwise, <see langword="false"/>.</param>
0 commit comments