Dropbox .NET SDK
Show / Hide Table of Contents

Class ListUsersOnFolderContinueArgs

The list users on folder continue args object

Inheritance
object
RefPaperDoc
ListUsersOnFolderContinueArgs
Inherited Members
RefPaperDoc.DocId
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 ListUsersOnFolderContinueArgs : RefPaperDoc

Constructors

View Source

ListUsersOnFolderContinueArgs(string, string)

Initializes a new instance of the ListUsersOnFolderContinueArgs class.

Declaration
public ListUsersOnFolderContinueArgs(string docId, string cursor)
Parameters
Type Name Description
string docId

The Paper doc ID.

string cursor

The cursor obtained from DocsFolderUsersListAsync(ListUsersOnFolderArgs) or DocsFolderUsersListContinueAsync(ListUsersOnFolderContinueArgs). Allows for pagination.

Properties

View Source

Cursor

The cursor obtained from DocsFolderUsersListAsync(ListUsersOnFolderArgs) or DocsFolderUsersListContinueAsync(ListUsersOnFolderContinueArgs). Allows for pagination.

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