Skip to content

Commit 95fcebd

Browse files
committed
Added no proxy property
1 parent ba2d43a commit 95fcebd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

dotnet/src/webdriver/BiDi/Session/ProxyConfiguration.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
// under the License.
1818
// </copyright>
1919

20+
using System.Collections.Generic;
2021
using System.Text.Json.Serialization;
2122

2223
namespace OpenQA.Selenium.BiDi.Session;
@@ -41,7 +42,9 @@ public record ManualProxyConfiguration : ProxyConfiguration
4142

4243
public string? SocksProxy { get; set; }
4344

44-
public long? SocksVersion { get; set; }
45+
public int? SocksVersion { get; set; } // 0..255
46+
47+
public IEnumerable<string>? NoProxy { get; set; }
4548
}
4649

4750
public record PacProxyConfiguration(string ProxyAutoConfigUrl) : ProxyConfiguration;

0 commit comments

Comments
 (0)