Class MembershipInfo
The information about a member of the shared content.
Inherited Members
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class MembershipInfo
Constructors
View SourceMembershipInfo(AccessLevel, IEnumerable<MemberPermission>, string, bool)
Initializes a new instance of the MembershipInfo class.
Declaration
public MembershipInfo(AccessLevel accessType, IEnumerable<MemberPermission> permissions = null, string initials = null, bool isInherited = false)
Parameters
| Type | Name | Description |
|---|---|---|
| AccessLevel | accessType | The access type for this member. It contains inherited access type from parent folder, and acquired access type from this folder. |
| IEnumerable<MemberPermission> | permissions | The permissions that requesting user has on this member. The set of permissions corresponds to the MemberActions in the request. |
| string | initials | Field is deprecated. Never set. |
| bool | isInherited | True if the member has access on a parent folder. |
Properties
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 |
|---|---|
| AccessLevel |
Initials
Field is deprecated. Never set.
Declaration
public string Initials { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
IsInherited
True if the member has access on a parent folder.
Declaration
public bool IsInherited { get; protected set; }
Property Value
| Type | Description |
|---|---|
| bool |
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 |
|---|---|
| IList<MemberPermission> |