SocketTools .NET Edition

FtpClient.FtpProxyType Enumeration

Specifies the type of proxy server that is being used by the FtpClient class.

[Visual Basic]
Public Enum FtpClient.FtpProxyType
[C#]
public enum FtpClient.FtpProxyType

Members

Member Name Description
proxyNone No proxy server is being used. This is the default value.
proxyUser The client is not logged into the proxy server. The USER command is sent in the format username@ftpsite followed by the password. This is the format used with the Gauntlet proxy server.
proxyLogin The client is logged into the proxy server. The USER command is then sent in the format username@ftpsite followed by the password. This is the format used by the InterLock proxy server.
proxyOpen The client is not logged into the proxy server. The OPEN command is sent specifying the host name, followed by the username and password.
proxySite The client is logged into the server. The SITE command is sent, specifying the host name, followed by the username and the password.
proxyOther This special proxy type specifies that another, undefined proxy server is being used. The client connects to the proxy host, but does not attempt to authenticate the client. The application is responsible for negotiating with the proxy server, typically using the Command property to send specific command sequences.

Requirements

Namespace: SocketTools

Assembly: SocketTools.FtpClient (in SocketTools.FtpClient.dll)

See Also

SocketTools Namespace