Skip to content

Commit

Permalink
add missing
Browse files Browse the repository at this point in the history
  • Loading branch information
robinrodricks committed Feb 24, 2023
1 parent e127578 commit 2ce9fc0
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion FluentFTP/Client/Interfaces/IBaseFtpClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

using System;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Net.NetworkInformation;
using System.Security.Authentication;
using System.Security.Cryptography.X509Certificates;
using System.Text;

Expand Down Expand Up @@ -37,8 +40,17 @@ public interface IBaseFtpClient {
FtpReply LastReply { get; }
List<FtpReply> LastReplies { get; set; }
Encoding Encoding { get; set; }

Action<FtpTraceLevel, string> LegacyLogger { get; set; }
FtpClientState Status { get; }
FtpIpVersion? InternetProtocol { get; }
bool IsAuthenticated { get; }
SslProtocols SslProtocolActive { get; }
bool IsEncrypted { get; }
bool ValidateCertificateHandlerExists { get; }
bool RecursiveList { get; }
IPEndPoint SocketLocalEndPoint { get; }
IPEndPoint SocketRemoteEndPoint { get; }


#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member

Expand Down

0 comments on commit 2ce9fc0

Please sign in to comment.