Dropbox .NET SDK
Show / Hide Table of Contents

Class GetCopyReferenceResult

The get copy reference result object

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

Constructors

View Source

GetCopyReferenceResult(Metadata, string, DateTime)

Initializes a new instance of the GetCopyReferenceResult class.

Declaration
public GetCopyReferenceResult(Metadata metadata, string copyReference, DateTime expires)
Parameters
Type Name Description
Metadata metadata

Metadata of the file or folder.

string copyReference

A copy reference to the file or folder.

DateTime expires

The expiration date of the copy reference. This value is currently set to be far enough in the future so that expiration is effectively not an issue.

Properties

View Source

CopyReference

A copy reference to the file or folder.

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

Expires

The expiration date of the copy reference. This value is currently set to be far enough in the future so that expiration is effectively not an issue.

Declaration
public DateTime Expires { get; protected set; }
Property Value
Type Description
DateTime
View Source

Metadata

Metadata of the file or folder.

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