ProxyProtocol Enumeration |
Defines the available modes of establishing connection with a mail server via a proxy server.
Namespace: MailBee.ProxyAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public enum ProxyProtocol
Public Enumeration ProxyProtocol
Members
| Member name | Value | Description |
---|
| NoProxy | 0 |
Do not use a proxy server and connect directly to a mail server.
|
| Socks4 | 1 |
Connect through a SOCK4 proxy server.
|
| Socks5 | 2 |
Connect through a SOCK5 proxy server.
|
| Http | 3 |
Connect through an HTTP proxy server.
|
Remarks When working with EWS, you can set a proxy using
WebProxy object which can be set with
ews.Service.Proxy property (assuming
ews is
Ews instance).
See Also