We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba2d43a commit 95fcebdCopy full SHA for 95fcebd
dotnet/src/webdriver/BiDi/Session/ProxyConfiguration.cs
@@ -17,6 +17,7 @@
17
// under the License.
18
// </copyright>
19
20
+using System.Collections.Generic;
21
using System.Text.Json.Serialization;
22
23
namespace OpenQA.Selenium.BiDi.Session;
@@ -41,7 +42,9 @@ public record ManualProxyConfiguration : ProxyConfiguration
41
42
43
public string? SocksProxy { get; set; }
44
- public long? SocksVersion { get; set; }
45
+ public int? SocksVersion { get; set; } // 0..255
46
+
47
+ public IEnumerable<string>? NoProxy { get; set; }
48
}
49
50
public record PacProxyConfiguration(string ProxyAutoConfigUrl) : ProxyConfiguration;
0 commit comments