Class FtpFeatureTextAttribute
Defines a text to be sent by the FEAT command.
Inheritance
FtpFeatureTextAttribute
Assembly: FubarDev.FtpServer.Abstractions.dll
Syntax
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class FtpFeatureTextAttribute : Attribute, IFeatureInfo
Constructors
|
Improve this Doc
View Source
FtpFeatureTextAttribute(String)
Declaration
public FtpFeatureTextAttribute(string featureText)
Parameters
Type |
Name |
Description |
String |
featureText |
The text sent by the FEAT command.
|
Properties
|
Improve this Doc
View Source
Names
Declaration
[Obsolete("Features don't have names. Use an attribute that implements IFeatureInfo, like - for example - FtpFeatureTextAttribute.")]
public ISet<string> Names { get; }
Property Value
|
Improve this Doc
View Source
RequiresAuthentication
Declaration
[Obsolete("This requirement is automatically determined through the FTP command handler.")]
public bool RequiresAuthentication { get; }
Property Value
Methods
|
Improve this Doc
View Source
BuildInfo(IFtpConnection)
Declaration
[Obsolete("Use BuildInfo(object, IFtpConnection) instead.")]
public string BuildInfo(IFtpConnection connection)
Parameters
Returns
|
Improve this Doc
View Source
BuildInfo(Type, IFtpConnection)
Declaration
public IEnumerable<string> BuildInfo(Type reference, IFtpConnection connection)
Parameters
Returns
Implements