File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed 
dotnet/src/webdriver/BiDi/Session Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change 1717// under the License. 
1818// </copyright> 
1919
20+ using  System . Collections . Generic ; 
2021using  System . Text . Json . Serialization ; 
2122
2223namespace  OpenQA . Selenium . BiDi . Session ; 
@@ -33,19 +34,26 @@ public record AutoDetectProxyConfiguration : ProxyConfiguration;
3334
3435public  record  DirectProxyConfiguration  :  ProxyConfiguration ; 
3536
36- public  record  ManualProxyConfiguration  :  ProxyConfiguration 
37+ public  record  ManualProxyConfiguration  :  ProxyConfiguration ,   ISocksProxyConfiguration 
3738{ 
38-     public  string ?  FtpProxy  {  get ;  set ;  } 
39- 
4039    public  string ?  HttpProxy  {  get ;  set ;  } 
4140
4241    public  string ?  SslProxy  {  get ;  set ;  } 
4342
4443    public  string ?  SocksProxy  {  get ;  set ;  } 
4544
46-     public  long ?  SocksVersion  {  get ;  set ;  } 
45+     public  int ?  SocksVersion  {  get ;  set ;  } 
46+ 
47+     public  IEnumerable < string > ?  NoProxy  {  get ;  set ;  } 
4748} 
4849
4950public  record  PacProxyConfiguration ( string  ProxyAutoConfigUrl )  :  ProxyConfiguration ; 
5051
5152public  record  SystemProxyConfiguration  :  ProxyConfiguration ; 
53+ 
54+ public  interface  ISocksProxyConfiguration 
55+ { 
56+     public  string ?  SocksProxy  {  get ;  set ;  } 
57+ 
58+     public  int ?  SocksVersion  {  get ;  set ;  }  // 0..255 
59+ } 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments