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 SourceGetCopyReferenceResult(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 SourceCopyReference
A copy reference to the file or folder.
Declaration
public string CopyReference { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
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 |
Metadata
Metadata of the file or folder.
Declaration
public Metadata Metadata { get; protected set; }
Property Value
Type | Description |
---|---|
Metadata |