Class MembershipInfo
The information about a member of the shared content.
Inheritance
System.Object
MembershipInfo
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 MembershipInfo
Constructors
| Improve this Doc View SourceMembershipInfo(AccessLevel, IEnumerable<MemberPermission>, String, Boolean)
Initializes a new instance of the Membership
Declaration
public MembershipInfo(AccessLevel accessType, IEnumerable<MemberPermission> permissions = null, string initials = null, bool isInherited = false)
Parameters
Type | Name | Description |
---|---|---|
Access |
accessType | The access type for this member. It contains inherited access type from parent folder, and acquired access type from this folder. |
System. |
permissions | The permissions that requesting user has on this member. The set of permissions corresponds to the MemberActions in the request. |
System. |
initials | Never set. |
System. |
isInherited | True if the member has access from a parent folder. |
Properties
| Improve this Doc View SourceAccessType
The access type for this member. It contains inherited access type from parent folder, and acquired access type from this folder.
Declaration
public AccessLevel AccessType { get; protected set; }
Property Value
Type | Description |
---|---|
Access |
Initials
Never set.
Declaration
public string Initials { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
IsInherited
True if the member has access from a parent folder.
Declaration
public bool IsInherited { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
Permissions
The permissions that requesting user has on this member. The set of permissions corresponds to the MemberActions in the request.
Declaration
public IList<MemberPermission> Permissions { get; protected set; }
Property Value
Type | Description |
---|---|
System. |