Interface IAccessMode
A unix style access mode interface.
Namespace: FubarDev.FtpServer.FileSystem
Assembly: FubarDev.FtpServer.Abstractions.dll
Syntax
public interface IAccessMode
Properties
| Improve this Doc View SourceExecute
Gets a value indicating whether an execute is allowed.
Declaration
bool Execute { get; }
Property Value
Type | Description |
---|---|
Boolean |
Read
Gets a value indicating whether a read is allowed.
Declaration
bool Read { get; }
Property Value
Type | Description |
---|---|
Boolean |
Write
Gets a value indicating whether a write is allowed.
Declaration
bool Write { get; }
Property Value
Type | Description |
---|---|
Boolean |