Dropbox .NET SDK
Show / Hide Table of Contents

Class ListRevisionsArg

The list revisions arg object

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

Constructors

View Source

ListRevisionsArg(string, ListRevisionsMode, ulong, string, bool)

Initializes a new instance of the ListRevisionsArg class.

Declaration
public ListRevisionsArg(string path, ListRevisionsMode mode = null, ulong limit = 10, string beforeRev = null, bool includeRestorableInfo = false)
Parameters
Type Name Description
string path

The path to the file you want to see the revisions of.

ListRevisionsMode mode

Determines the behavior of the API in listing the revisions for a given file path or id.

ulong limit

The maximum number of revision entries returned.

string beforeRev

If set, ListRevisions will only return revisions prior to before_rev. Can be set using the last revision from a previous call to list_revisions to fetch the next page of revisions. Only supported in path mode.

bool includeRestorableInfo

If true, each returned revision will include whether that revision can be restored.

Properties

View Source

BeforeRev

If set, ListRevisions will only return revisions prior to before_rev. Can be set using the last revision from a previous call to list_revisions to fetch the next page of revisions. Only supported in path mode.

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

IncludeRestorableInfo

If true, each returned revision will include whether that revision can be restored.

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

Limit

The maximum number of revision entries returned.

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

Mode

Determines the behavior of the API in listing the revisions for a given file path or id.

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

Path

The path to the file you want to see the revisions of.

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