Dropbox .NET SDK
Show / Hide Table of Contents

Class ExportInfo

Export information for a file.

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

Constructors

View Source

ExportInfo(string, IEnumerable<string>)

Initializes a new instance of the ExportInfo class.

Declaration
public ExportInfo(string exportAs = null, IEnumerable<string> exportOptions = null)
Parameters
Type Name Description
string exportAs

Format to which the file can be exported to.

IEnumerable<string> exportOptions

Additional formats to which the file can be exported. These values can be specified as the export_format in /files/export.

Properties

View Source

ExportAs

Format to which the file can be exported to.

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

ExportOptions

Additional formats to which the file can be exported. These values can be specified as the export_format in /files/export.

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