-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathProxyOptions.cs
More file actions
60 lines (53 loc) · 2.06 KB
/
ProxyOptions.cs
File metadata and controls
60 lines (53 loc) · 2.06 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Copyright © 2017 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp
{
/// <summary>
/// Proxy options
/// </summary>
public class ProxyOptions
{
/// <summary>
/// The IP address for the proxy
/// </summary>
public string IP { get; private set; }
/// <summary>
/// The port for the proxy
/// </summary>
public string Port { get; private set; }
/// <summary>
/// The username for authentication
/// </summary>
public string Username { get; set; }
/// <summary>
/// The password for authentication
/// </summary>
public string Password { get; set; }
/// <summary>
/// The list of domains that shouldn't be affected by the proxy, Format: example.com;example2.com
/// </summary>
public string BypassList { get; private set; }
/// <summary>
/// Checks if username and password is set
/// </summary>
/// <returns>Returns true if both username and password is set, otherwise false</returns>
public bool HasUsernameAndPassword()
{
return !string.IsNullOrEmpty(Username) && !string.IsNullOrEmpty(Password);
}
/// <param name="ip">The IP address for the proxy</param>
/// <param name="port">The port for the proxy</param>
/// <param name="username">The username required for authentication</param>
/// <param name="password">The password required for authentication</param>
/// <param name="bypassList">The list of domains that shouldn't be affected by the proxy, Format: example.com;example2.com</param>
public ProxyOptions(string ip, string port, string username = "", string password = "", string bypassList = "")
{
IP = ip;
Port = port;
Username = username;
Password = password;
BypassList = bypassList;
}
}
}