Dropbox .NET SDK
Show / Hide Table of Contents

Class SharedFileMembers

Shared file user, group, and invitee membership. Used for the results of ListFileMembersAsync(ListFileMembersArg) and ListFileMembersContinueAsync(ListFileMembersContinueArg), and used as part of the results for ListFileMembersBatchAsync(ListFileMembersBatchArg).

Inheritance
object
SharedFileMembers
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 SharedFileMembers

Constructors

View Source

SharedFileMembers(IEnumerable<UserFileMembershipInfo>, IEnumerable<GroupMembershipInfo>, IEnumerable<InviteeMembershipInfo>, string)

Initializes a new instance of the SharedFileMembers class.

Declaration
public SharedFileMembers(IEnumerable<UserFileMembershipInfo> users, IEnumerable<GroupMembershipInfo> groups, IEnumerable<InviteeMembershipInfo> invitees, string cursor = null)
Parameters
Type Name Description
IEnumerable<UserFileMembershipInfo> users

The list of user members of the shared file.

IEnumerable<GroupMembershipInfo> groups

The list of group members of the shared file.

IEnumerable<InviteeMembershipInfo> invitees

The list of invited members of a file, but have not logged in and claimed this.

string cursor

Present if there are additional shared file members that have not been returned yet. Pass the cursor into ListFileMembersContinueAsync(ListFileMembersContinueArg) to list additional members.

Properties

View Source

Cursor

Present if there are additional shared file members that have not been returned yet. Pass the cursor into ListFileMembersContinueAsync(ListFileMembersContinueArg) to list additional members.

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

Groups

The list of group members of the shared file.

Declaration
public IList<GroupMembershipInfo> Groups { get; protected set; }
Property Value
Type Description
IList<GroupMembershipInfo>
View Source

Invitees

The list of invited members of a file, but have not logged in and claimed this.

Declaration
public IList<InviteeMembershipInfo> Invitees { get; protected set; }
Property Value
Type Description
IList<InviteeMembershipInfo>
View Source

Users

The list of user members of the shared file.

Declaration
public IList<UserFileMembershipInfo> Users { get; protected set; }
Property Value
Type Description
IList<UserFileMembershipInfo>

See Also

ListFileMembersCountResult
  • View Source
In this article
Back to top Dropbox .NET SDK