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
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
FtpPort
FTP server port. Optional. You can either set it here or set ftpClient.Port
later on.
public int FtpPort { get; set; }
Property Value
ProxyCredentials
Proxy server login credentials. Mandatory if your proxy needs authentication, leave it blank otherwise.
public NetworkCredential ProxyCredentials { get; set; }
Property Value
ProxyHost
Proxy server host name. Mandatory.
public string ProxyHost { get; set; }
Property Value
ProxyPort
Proxy server port. Mandatory.
public int ProxyPort { get; set; }