Table of Contents

Class FtpProxyProfile

Namespace
FluentFTP
Assembly
FluentFTP.dll

Connection profile for a proxy connection.

public class FtpProxyProfile
Inheritance
FtpProxyProfile
Inherited Members
Extension Methods

Constructors

FtpProxyProfile()

public FtpProxyProfile()

Properties

FtpCredentials

FTP server login credentials. Optional. You can either set it here or set ftpClient.Credentials later on.

public NetworkCredential FtpCredentials { get; set; }

Property Value

NetworkCredential

FtpHost

FTP server host name. Optional. You can either set it here or set ftpClient.Host later on.

public string FtpHost { get; set; }

Property Value

string

FtpPort

FTP server port. Optional. You can either set it here or set ftpClient.Port later on.

public int FtpPort { get; set; }

Property Value

int

ProxyCredentials

Proxy server login credentials. Mandatory if your proxy needs authentication, leave it blank otherwise.

public NetworkCredential ProxyCredentials { get; set; }

Property Value

NetworkCredential

ProxyHost

Proxy server host name. Mandatory.

public string ProxyHost { get; set; }

Property Value

string

ProxyPort

Proxy server port. Mandatory.

public int ProxyPort { get; set; }

Property Value

int