Dropbox .NET SDK
Show / Hide Table of Contents

Class LinkPermission

Permissions for actions that can be performed on a link.

Inheritance
object
LinkPermission
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 LinkPermission

Constructors

View Source

LinkPermission(LinkAction, bool, PermissionDeniedReason)

Initializes a new instance of the LinkPermission class.

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

The action

bool allow

The allow

PermissionDeniedReason reason

The reason

Properties

View Source

Action

Gets the action of the link permission

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

Allow

Gets the allow of the link permission

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

Reason

Gets the reason of the link permission

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