Dropbox .NET SDK
Show / Hide Table of Contents

Class DownloadArg

The download arg object

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

Constructors

View Source

DownloadArg(string, string)

Initializes a new instance of the DownloadArg class.

Declaration
public DownloadArg(string path, string rev = null)
Parameters
Type Name Description
string path

The path of the file to download.

string rev

Field is deprecated. Please specify revision in path instead.

Properties

View Source

Path

The path of the file to download.

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

Rev

Field is deprecated. Please specify revision in Path instead.

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