Interface IFtpHost
Information about an FTP host.
Namespace: FubarDev.FtpServer
Assembly: FubarDev.FtpServer.Abstractions.dll
Syntax
public interface IFtpHost
Properties
| Improve this Doc View SourceAuthenticationMechanisms
Gets the authentication mechanisms for this host.
Declaration
IEnumerable<IAuthenticationMechanism> AuthenticationMechanisms { get; }
Property Value
Type | Description |
---|---|
IEnumerable<IAuthenticationMechanism> |
AuthorizationMechanisms
Gets the authorization mechanisms for this host.
Declaration
IEnumerable<IAuthorizationMechanism> AuthorizationMechanisms { get; }
Property Value
Type | Description |
---|---|
IEnumerable<IAuthorizationMechanism> |
Certificate
Gets the certificate for this host.
Declaration
X509Certificate? Certificate { get; }
Property Value
Type | Description |
---|---|
Nullable<X509Certificate> |
Info
Gets the FTP host information as passed to the HOST
command.
Declaration
HostInfo Info { get; }
Property Value
Type | Description |
---|---|
HostInfo |