Interface IFeatureHost
Interface for something that may host FTP features.
Namespace: FubarDev.FtpServer
Assembly: FubarDev.FtpServer.Abstractions.dll
Syntax
[Obsolete("FTP command handlers (and other types) are now annotated with attributes implementing IFeatureInfo.")]
public interface IFeatureHost
  Methods
| Improve this Doc View SourceGetSupportedFeatures(IFtpConnection)
Gets a collection of features supported by this command handler.
Declaration
[Obsolete("FTP command handlers (and other types) are now annotated with attributes implementing IFeatureInfo.")]
IEnumerable<IFeatureInfo> GetSupportedFeatures(IFtpConnection connection)
  Parameters
| Type | Name | Description | 
|---|---|---|
| IFtpConnection | connection | The FTP connection.  | 
      
Returns
| Type | Description | 
|---|---|
| IEnumerable<IFeatureInfo> | A list of features supported by this command handler.  |