Dropbox .NET SDK
Show / Hide Table of Contents

Class InviteeMembershipInfo

Information about an invited member of a shared content.

Inheritance
object
MembershipInfo
InviteeMembershipInfo
Inherited Members
MembershipInfo.AccessType
MembershipInfo.Permissions
MembershipInfo.Initials
MembershipInfo.IsInherited
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 InviteeMembershipInfo : MembershipInfo

Constructors

View Source

InviteeMembershipInfo(AccessLevel, InviteeInfo, IEnumerable<MemberPermission>, string, bool, UserInfo)

Initializes a new instance of the InviteeMembershipInfo class.

Declaration
public InviteeMembershipInfo(AccessLevel accessType, InviteeInfo invitee, IEnumerable<MemberPermission> permissions = null, string initials = null, bool isInherited = false, UserInfo user = null)
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.

InviteeInfo invitee

Recipient of the invitation.

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.

UserInfo user

The user this invitation is tied to, if available.

Properties

View Source

Invitee

Recipient of the invitation.

Declaration
public InviteeInfo Invitee { get; protected set; }
Property Value
Type Description
InviteeInfo
View Source

User

The user this invitation is tied to, if available.

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