Show / Hide Table of Contents

Class GetCopyReferenceResult

The get copy reference result object

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

Constructors

| Improve this Doc 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.

System.String copyReference

A copy reference to the file or folder.

System.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

| Improve this Doc View Source

CopyReference

A copy reference to the file or folder.

Declaration
public string CopyReference { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc 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
System.DateTime
| Improve this Doc View Source

Metadata

Metadata of the file or folder.

Declaration
public Metadata Metadata { get; protected set; }
Property Value
Type Description
Metadata
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • GetCopyReferenceResult(Metadata, String, DateTime)
  • Properties
    • CopyReference
    • Expires
    • Metadata
Back to top Generated by DocFX