Interface IFtpCommandHandlerExtension
Interface for command handler extensions.
Namespace: FubarDev.FtpServer
Assembly: FubarDev.FtpServer.Abstractions.dll
Syntax
public interface IFtpCommandHandlerExtension : IFtpCommandBase
Properties
| Improve this Doc View SourceExtensionFor
Gets a name of the command this extension is for.
Declaration
[Obsolete("Use the FtpCommandHandlerExtensionAttribute together with an additional IFtpCommandHandlerExtensionScanner.")]
string ExtensionFor { get; }
Property Value
Type | Description |
---|---|
String |
IsLoginRequired
Gets a value indicating whether a login is required to execute this command.
Declaration
[Obsolete("Use the FtpCommandHandlerExtensionAttribute together with an additional IFtpCommandHandlerExtensionScanner.")]
bool? IsLoginRequired { get; }
Property Value
Type | Description |
---|---|
Nullable<Boolean> |
Methods
| Improve this Doc View SourceInitializeConnectionData()
Called to initialize the connection data.
Declaration
void InitializeConnectionData()