Skip to content

Commit

Permalink
Make IFtpClient inherit from IDisposable
Browse files Browse the repository at this point in the history
  • Loading branch information
avens19 committed Oct 20, 2017
1 parent 6bb9820 commit 4887728
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions FluentFTP/Client/IFtpClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace FluentFTP {
/// <summary>
/// Interface for the FtpClient class. For detailed documentation of the methods, please see the FtpClient class.
/// </summary>
public interface IFtpClient {
public interface IFtpClient : IDisposable {


// CONNECTION
Expand Down Expand Up @@ -58,7 +58,6 @@ public interface IFtpClient {
FtpDataType UploadDataType { get; set; }
FtpDataType DownloadDataType { get; set; }
event FtpSslValidation ValidateCertificate;
void Dispose();
FtpReply Execute(string command);
FtpReply GetReply();
void Connect();
Expand Down

0 comments on commit 4887728

Please sign in to comment.