Interface IFtpUser
A basic FTP user interface.
Namespace: FubarDev.FtpServer.AccountManagement
Assembly: FubarDev.FtpServer.Abstractions.dll
Syntax
[Obsolete("Use ClaimsPrincipal")]
public interface IFtpUser
Properties
| Improve this Doc View SourceName
Gets the name of the user.
Declaration
string Name { get; }
Property Value
| Type | Description |
|---|---|
| String |
Methods
| Improve this Doc View SourceIsInGroup(String)
Returns true when the user is in the given group.
Declaration
bool IsInGroup(string groupName)
Parameters
| Type | Name | Description |
|---|---|---|
| String | groupName | The name of the group. |
Returns
| Type | Description |
|---|---|
| Boolean |
|