Class GenericAccessMode
Generic implementation of the IAccessMode interface.
Implements
Inherited Members
Namespace: FubarDev.FtpServer.FileSystem.Generic
Assembly: FubarDev.FtpServer.Abstractions.dll
Syntax
public class GenericAccessMode : IAccessMode
Constructors
| Improve this Doc View SourceGenericAccessMode(Boolean, Boolean, Boolean)
Initializes a new instance of the GenericAccessMode class.
Declaration
public GenericAccessMode(bool read, bool write, bool execute)
Parameters
| Type | Name | Description |
|---|---|---|
| Boolean | read | Determines whether reading is allowed. |
| Boolean | write | Determines whether writing is allowed. |
| Boolean | execute | Determines whether execution is allowed. |
Properties
| Improve this Doc View SourceExecute
Declaration
public bool Execute { get; }
Property Value
| Type | Description |
|---|---|
| Boolean |
Read
Declaration
public bool Read { get; }
Property Value
| Type | Description |
|---|---|
| Boolean |
Write
Declaration
public bool Write { get; }
Property Value
| Type | Description |
|---|---|
| Boolean |