Interface IFtpCommandHandler
Interface that an FTP command handler has to implement.
Inherited Members
Namespace: FubarDev.FtpServer
Assembly: FubarDev.FtpServer.Abstractions.dll
Syntax
public interface IFtpCommandHandler : IFtpCommandBase, IFeatureHost
Properties
| Improve this Doc View SourceIsAbortable
Gets a value indicating whether this command is abortable.
Declaration
[Obsolete("Information about an FTP command handler can be queried through the IFtpCommandHandlerProvider service.")]
bool IsAbortable { get; }
Property Value
Type | Description |
---|---|
Boolean |
IsLoginRequired
Gets a value indicating whether a login is required to execute this command.
Declaration
[Obsolete("Information about an FTP command handler can be queried through the IFtpCommandHandlerProvider service.")]
bool IsLoginRequired { get; }
Property Value
Type | Description |
---|---|
Boolean |
Methods
| Improve this Doc View SourceGetExtensions()
Gets a collection of command handler extensions provided by this command handler.
Declaration
[Obsolete("All IFtpCommandHandlerExtension implementations are now stand-alone.", true)]
IEnumerable<IFtpCommandHandlerExtension> GetExtensions()
Returns
Type | Description |
---|---|
IEnumerable<IFtpCommandHandlerExtension> | A collection of command handler extensions provided by this command handler. |