Show / Hide Table of Contents

Class MemberPermission

Whether the user is allowed to take the action on the associated member.

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

Constructors

| Improve this Doc View Source

MemberPermission(MemberAction, Boolean, PermissionDeniedReason)

Initializes a new instance of the MemberPermission class.

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

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

System.Boolean 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

| Improve this Doc View Source

Action

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

Declaration
public MemberAction Action { get; protected set; }
Property Value
Type Description
MemberAction
| Improve this Doc View Source

Allow

True if the user is allowed to take the action.

Declaration
public bool Allow { get; protected set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

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
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • MemberPermission(MemberAction, Boolean, PermissionDeniedReason)
  • Properties
    • Action
    • Allow
    • Reason
Back to top Generated by DocFX