Description
-
Type of proxy used.
Property type
-
An ProxyTypes
enumeration.
Syntax
-
object.ProxyType [= value]
The ProxyType Property syntax has these parts:
Settings
-
The settings for value are:
 |
ProxyNone |
0 |
No proxy is used. |
 |
ProxySocks |
1 |
Connection is made through
SOCKS proxy firewall. |
 |
ProxyWEBStandard |
2 |
Typical WEB proxy (using
web CONNECT command) is used. |
 |
ProxyWindows |
3 |
Uses settings from the
registry (same as Internet Explorer). |
Remarks
-
If the user needs to connect to a remote server through
a proxy, this property should be set to a value other than
ProxyNone (ProxyWindows is default value). Depending
on the type of remote proxy, the user should specify the
correct protocol with this property.
The most common proxy type is ProxyWEBStandard.
ProxySocks is general proxy protocol, universal to
any type of protocol running on top of it. On most
Windows only Socks4 is supported when ProxySocks is
selected. ProxyWindows type uses same values as
specified in Internet Explorer, under Tools->Internet
Options->Connections->LAN Settings.
If your proxy server needs you to authenticate, you should
setup ProxyLogin
and ProxyPassword
properties. Only ProxyWEBStandard supports
login/password authorization.
|