Dropbox .NET SDK
Show / Hide Table of Contents

Class SaveCopyReferenceArg

The save copy reference arg object

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

Constructors

View Source

SaveCopyReferenceArg(string, string)

Initializes a new instance of the SaveCopyReferenceArg class.

Declaration
public SaveCopyReferenceArg(string copyReference, string path)
Parameters
Type Name Description
string copyReference

A copy reference returned by CopyReferenceGetAsync(GetCopyReferenceArg).

string path

Path in the user's Dropbox that is the destination.

Properties

View Source

CopyReference

A copy reference returned by CopyReferenceGetAsync(GetCopyReferenceArg).

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

Path

Path in the user's Dropbox that is the destination.

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