forked from florentbr/SeleniumBasic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_Proxy.cs
More file actions
35 lines (24 loc) · 942 Bytes
/
_Proxy.cs
File metadata and controls
35 lines (24 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.ComponentModel;
using System.Runtime.InteropServices;
namespace Selenium.ComInterfaces {
#pragma warning disable 1591
[Guid("0277FC34-FD1B-4616-BB19-D0E30A5D0697")]
[ComVisible(true), InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
public interface _Proxy {
[DispId(615), Description("")]
void SetAutoConfigure(string url);
[DispId(617), Description("")]
void SetAutodetect();
[DispId(620), Description("")]
void SetFTPProxy(string value);
[DispId(622), Description("")]
void SetHttpProxy(string value);
[DispId(625), Description("")]
void SetSocksProxy(string value, string username = null, string password = null);
[DispId(628), Description("")]
void SetSSLProxy(string value);
[DispId(-4)]
System.Collections.IEnumerator _NewEnum(); //Has to be declared last
}
}