Class FtpFxpSession
- Namespace
- FluentFTP
- Assembly
- FluentFTP.dll
Object that keeps track of an active FXP Connection between 2 FTP servers.
public class FtpFxpSession : IDisposable
- Inheritance
-
FtpFxpSession
- Implements
- Inherited Members
- Extension Methods
Constructors
FtpFxpSession()
public FtpFxpSession()
Properties
IsDisposed
Gets a value indicating if this object has already been disposed.
public bool IsDisposed { get; }
Property Value
ProgressServer
A connection to the destination FTP server used to track progress while transfer is going on.
public FtpClient ProgressServer { get; set; }
Property Value
SourceServer
A connection to the FTP server where the file or folder is currently stored
public FtpClient SourceServer { get; set; }
Property Value
TargetServer
A connection to the destination FTP server where you want to create the file or folder
public FtpClient TargetServer { get; set; }
Property Value
Methods
Dispose()
Closes an FXP connection by disconnecting and disposing off the FTP clients that are cloned for this FXP connection. Manually created FTP clients are untouched.
public void Dispose()