Dropbox .NET SDK
Show / Hide Table of Contents

Class ExportResult

The export result object

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

Constructors

View Source

ExportResult(ExportMetadata, FileMetadata)

Initializes a new instance of the ExportResult class.

Declaration
public ExportResult(ExportMetadata exportMetadata, FileMetadata fileMetadata)
Parameters
Type Name Description
ExportMetadata exportMetadata

Metadata for the exported version of the file.

FileMetadata fileMetadata

Metadata for the original file.

Properties

View Source

ExportMetadata

Metadata for the exported version of the file.

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

FileMetadata

Metadata for the original file.

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