|
Summary
Defines the Port number on proxy server through which ftp connection is made.
Description
The ProxyPort property specifies the remote port on the proxy server on which the proxy service resides.
The ProxyPort property must be set before the connection through proxy server is made. The ActiveX control does not verify the setting of the ProxyPort property. The user is therefore responsible for
entering a valid port number.
This property can be changed at design time and at run time before a connection has been established. There is no default value for this property.
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")
|