Skip to content

Commit d31bfd3

Browse files
committed
Reinstating ICommandExecutor descending from IDisposable in .NET
Now that the Appium project has implemented the methods required by an implementation of IDisposable, this change can be made upstream in the Selenium project. As this change has been rolled back once before to accommodate downstream projects, it will be incumbent upon them to update their libraries now, as it will not be rolled back again. In the case of Appium, this is merely awaiting a binary release; other downstream projects will be responsible for managing their own code changes and release schedule.
1 parent db1e959 commit d31bfd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/webdriver/Remote/ICommandExecutor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace OpenQA.Selenium.Remote
2323
/// <summary>
2424
/// Provides a way to send commands to the remote server
2525
/// </summary>
26-
public interface ICommandExecutor
26+
public interface ICommandExecutor : IDisposable
2727
{
2828
/// <summary>
2929
/// Gets the repository of objects containin information about commands.

0 commit comments

Comments
 (0)