Dropbox .NET SDK
Show / Hide Table of Contents

Class ListPaperDocsArgs

The list paper docs args object

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

Constructors

View Source

ListPaperDocsArgs(ListPaperDocsFilterBy, ListPaperDocsSortBy, ListPaperDocsSortOrder, int, DateTime?)

Initializes a new instance of the ListPaperDocsArgs class.

Declaration
public ListPaperDocsArgs(ListPaperDocsFilterBy filterBy = null, ListPaperDocsSortBy sortBy = null, ListPaperDocsSortOrder sortOrder = null, int limit = 1000, DateTime? stopAtDate = null)
Parameters
Type Name Description
ListPaperDocsFilterBy filterBy

Allows user to specify how the Paper docs should be filtered.

ListPaperDocsSortBy sortBy

Allows user to specify how the Paper docs should be sorted.

ListPaperDocsSortOrder sortOrder

Allows user to specify the sort order of the result.

int limit

Size limit per batch. The maximum number of docs that can be retrieved per batch is 1000. Higher value results in invalid arguments error.

DateTime? stopAtDate

Do not return results beyond this date. Behavior depends on sort order.

Properties

View Source

FilterBy

Allows user to specify how the Paper docs should be filtered.

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

Limit

Size limit per batch. The maximum number of docs that can be retrieved per batch is 1000. Higher value results in invalid arguments error.

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

SortBy

Allows user to specify how the Paper docs should be sorted.

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

SortOrder

Allows user to specify the sort order of the result.

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

StopAtDate

Do not return results beyond this date. Behavior depends on sort order.

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