Dropbox .NET SDK
Show / Hide Table of Contents

Class ListUsersOnFolderResponse

The list users on folder response object

Inheritance
object
ListUsersOnFolderResponse
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Paper
Assembly: Dropbox.Api.dll
Syntax
public class ListUsersOnFolderResponse

Constructors

View Source

ListUsersOnFolderResponse(IEnumerable<InviteeInfo>, IEnumerable<UserInfo>, Cursor, bool)

Initializes a new instance of the ListUsersOnFolderResponse class.

Declaration
public ListUsersOnFolderResponse(IEnumerable<InviteeInfo> invitees, IEnumerable<UserInfo> users, Cursor cursor, bool hasMore)
Parameters
Type Name Description
IEnumerable<InviteeInfo> invitees

List of email addresses that are invited on the Paper folder.

IEnumerable<UserInfo> users

List of users that are invited on the Paper folder.

Cursor cursor

Pass the cursor into DocsFolderUsersListContinueAsync(ListUsersOnFolderContinueArgs) to paginate through all users. The cursor preserves all properties as specified in the original call to DocsFolderUsersListAsync(ListUsersOnFolderArgs).

bool hasMore

Will be set to True if a subsequent call with the provided cursor to DocsFolderUsersListContinueAsync(ListUsersOnFolderContinueArgs) returns immediately with some results. If set to False please allow some delay before making another call to DocsFolderUsersListContinueAsync(ListUsersOnFolderContinueArgs).

Properties

View Source

Cursor

Pass the cursor into DocsFolderUsersListContinueAsync(ListUsersOnFolderContinueArgs) to paginate through all users. The cursor preserves all properties as specified in the original call to DocsFolderUsersListAsync(ListUsersOnFolderArgs).

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

HasMore

Will be set to True if a subsequent call with the provided cursor to DocsFolderUsersListContinueAsync(ListUsersOnFolderContinueArgs) returns immediately with some results. If set to False please allow some delay before making another call to DocsFolderUsersListContinueAsync(ListUsersOnFolderContinueArgs).

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

Invitees

List of email addresses that are invited on the Paper folder.

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

Users

List of users that are invited on the Paper folder.

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