Dropbox .NET SDK
Show / Hide Table of Contents

Class MembershipInfo

The information about a member of the shared content.

Inheritance
object
MembershipInfo
GroupMembershipInfo
InviteeMembershipInfo
UserMembershipInfo
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 MembershipInfo

Constructors

View Source

MembershipInfo(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 Source

AccessType

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
View Source

Initials

Field is deprecated. Never set.

Declaration
public string Initials { get; protected set; }
Property Value
Type Description
string
View Source

IsInherited

True if the member has access on a parent folder.

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

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>

See Also

GroupMembershipInfo
InviteeMembershipInfo
UserMembershipInfo
  • View Source
In this article
Back to top Dropbox .NET SDK