Class FilePermission
Whether the user is allowed to take the sharing action on the file.
Inherited Members
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class FilePermission
Constructors
View SourceFilePermission(FileAction, bool, PermissionDeniedReason)
Initializes a new instance of the FilePermission class.
Declaration
public FilePermission(FileAction action, bool allow, PermissionDeniedReason reason = null)
Parameters
| Type | Name | Description |
|---|---|---|
| FileAction | action | The action that the user may wish to take on the file. |
| bool | allow | True if the user is allowed to take the action. |
| PermissionDeniedReason | reason | The reason why the user is denied the permission. Not present if the action is allowed. |
Properties
View SourceAction
The action that the user may wish to take on the file.
Declaration
public FileAction Action { get; protected set; }
Property Value
| Type | Description |
|---|---|
| FileAction |
Allow
True if the user is allowed to take the action.
Declaration
public bool Allow { get; protected set; }
Property Value
| Type | Description |
|---|---|
| bool |
Reason
The reason why the user is denied the permission. Not present if the action is allowed.
Declaration
public PermissionDeniedReason Reason { get; protected set; }
Property Value
| Type | Description |
|---|---|
| PermissionDeniedReason |