|
Summary
Type of proxy server.
Description
The ProxyType property specifies the proxy server type on which the proxy service resides. Currently only http proxy server is supported.
The ProxyType property must be set before the connection through proxy server is made. It should be set to one of the following legal values:
PROXY_TYPE_NONE PROXY_TYPE_HTTP
This property can be changed at design time and at run time before a connection has been established. Default value for this property is PROXY_TYPE_NONE.
Example
FTPClient.ProxyHost = ftp.distinct.com
FTPClient.ProxyPort = 80
FTPClient.ProxyUser = "anonymous"
FTPClient.ProxyPassword = "distinct"
FTPClient.ProxyType = PROXY_TYPE_HTTP
Result = FTPClient.Connect ("speedy.distinct.com", "santa", "north pole", "sc001d")
|