File tree 1 file changed +3
-3
lines changed
dotnet/src/webdriver/BiDi/Modules/Session
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 24
24
namespace OpenQA . Selenium . BiDi . Modules . Session ;
25
25
26
26
[ JsonPolymorphic ( TypeDiscriminatorPropertyName = "proxyType" ) ]
27
- [ JsonDerivedType ( typeof ( Autodetect ) , "autodetect" ) ]
27
+ [ JsonDerivedType ( typeof ( AutoDetect ) , "autodetect" ) ]
28
28
[ JsonDerivedType ( typeof ( Direct ) , "direct" ) ]
29
29
[ JsonDerivedType ( typeof ( Manual ) , "manual" ) ]
30
30
[ JsonDerivedType ( typeof ( Pac ) , "pac" ) ]
31
31
[ JsonDerivedType ( typeof ( System ) , "system" ) ]
32
32
public abstract record ProxyConfiguration
33
33
{
34
- public record Autodetect : ProxyConfiguration ;
34
+ public record AutoDetect : ProxyConfiguration ;
35
35
36
36
public record Direct : ProxyConfiguration ;
37
37
@@ -48,7 +48,7 @@ public record Manual : ProxyConfiguration
48
48
public long ? SocksVersion { get ; set ; }
49
49
}
50
50
51
- public record Pac ( string ProxyAutoconfigUrl ) : ProxyConfiguration ;
51
+ public record Pac ( string ProxyAutoConfigUrl ) : ProxyConfiguration ;
52
52
53
53
public record System : ProxyConfiguration ;
54
54
}
You can’t perform that action at this time.
0 commit comments