Skip to content

Commit 5673c43

Browse files
committed
[dotnet] remove deprecated methods that have no effect
1 parent 927e5af commit 5673c43

File tree

2 files changed

+0
-19
lines changed

2 files changed

+0
-19
lines changed

dotnet/src/webdriver/Firefox/FirefoxOptions.cs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -92,16 +92,6 @@ public FirefoxOptions()
9292
this.AddKnownCapabilityName(FirefoxOptions.FirefoxEnableDevToolsProtocolCapability, "EnableDevToolsProtocol property");
9393
}
9494

95-
/// <summary>
96-
/// Gets or sets a value indicating whether to use the legacy driver implementation.
97-
/// </summary>
98-
[Obsolete(".NET bindings no longer support the legacy driver implementation. Setting this property no longer has any effect. .NET users should always be using geckodriver.")]
99-
public bool UseLegacyImplementation
100-
{
101-
get { return false; }
102-
set { }
103-
}
104-
10595
/// <summary>
10696
/// Gets or sets the <see cref="FirefoxProfile"/> object to be used with this instance.
10797
/// </summary>

dotnet/src/webdriver/Remote/SendingRemoteHttpRequestEventArgs.cs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,6 @@ public SendingRemoteHttpRequestEventArgs(string method, string fullUrl, string r
4545
this.requestBody = requestBody;
4646
}
4747

48-
/// <summary>
49-
/// Gets the <see cref="HttpWebRequest"/> object representing the HTTP request being sent.
50-
/// </summary>
51-
[Obsolete("Bindings no longer use HttpWebRequest. This property will return null, and will be removed in a future release.")]
52-
public HttpWebRequest Request
53-
{
54-
get { return null; }
55-
}
56-
5748
/// <summary>
5849
/// Gets the HTTP method for the HTTP request.
5950
/// </summary>

0 commit comments

Comments
 (0)