Dropbox .NET SDK
Show / Hide Table of Contents

Class FolderPermission

Whether the user is allowed to take the action on the shared folder.

Inheritance
object
FolderPermission
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class FolderPermission

Constructors

View Source

FolderPermission(FolderAction, bool, PermissionDeniedReason)

Initializes a new instance of the FolderPermission class.

Declaration
public FolderPermission(FolderAction action, bool allow, PermissionDeniedReason reason = null)
Parameters
Type Name Description
FolderAction action

The action that the user may wish to take on the folder.

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, or if no reason is available.

Properties

View Source

Action

The action that the user may wish to take on the folder.

Declaration
public FolderAction Action { get; protected set; }
Property Value
Type Description
FolderAction
View Source

Allow

True if the user is allowed to take the action.

Declaration
public bool Allow { get; protected set; }
Property Value
Type Description
bool
View Source

Reason

The reason why the user is denied the permission. Not present if the action is allowed, or if no reason is available.

Declaration
public PermissionDeniedReason Reason { get; protected set; }
Property Value
Type Description
PermissionDeniedReason
  • View Source
In this article
Back to top Dropbox .NET SDK