Interface IAnonymousPasswordValidator
This interface validates the password for an anonymous login.
Namespace: FubarDev.FtpServer.AccountManagement.Anonymous
Assembly: FubarDev.FtpServer.Abstractions.dll
Syntax
public interface IAnonymousPasswordValidator
Methods
| Improve this Doc View SourceIsValid(String)
Determines whether this password is valid for an anonymous login.
Declaration
bool IsValid(string password)
Parameters
Type | Name | Description |
---|---|---|
String | password | The password to validate. |
Returns
Type | Description |
---|---|
Boolean | when the password is valid for this kind of anonymous authentication.
|