Class SharedFolderMembers
Shared folder user and group membership.
Inheritance
Inherited Members
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class SharedFolderMembers
Constructors
| Improve this Doc View SourceSharedFolderMembers(IEnumerable<UserMembershipInfo>, IEnumerable<GroupMembershipInfo>, IEnumerable<InviteeMembershipInfo>, String)
Initializes a new instance of the Shared
Declaration
public SharedFolderMembers(IEnumerable<UserMembershipInfo> users, IEnumerable<GroupMembershipInfo> groups, IEnumerable<InviteeMembershipInfo> invitees, string cursor = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
users | The list of user members of the shared folder. |
System. |
groups | The list of group members of the shared folder. |
System. |
invitees | The list of invitees to the shared folder. |
System. |
cursor | Present if there are additional shared folder members that
have not been returned yet. Pass the cursor into List |
Properties
| Improve this Doc View SourceCursor
Present if there are additional shared folder members that have not been
returned yet. Pass the cursor into List
Declaration
public string Cursor { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
Groups
The list of group members of the shared folder.
Declaration
public IList<GroupMembershipInfo> Groups { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
Invitees
The list of invitees to the shared folder.
Declaration
public IList<InviteeMembershipInfo> Invitees { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
Users
The list of user members of the shared folder.
Declaration
public IList<UserMembershipInfo> Users { get; protected set; }
Property Value
Type | Description |
---|---|
System. |