Show / Hide Table of Contents

Class ExportInfo

Export information for a file.

Inheritance
System.Object
ExportInfo
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 ExportInfo

Constructors

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

Format to which the file can be exported to.

System.Collections.Generic.IEnumerable<System.String> exportOptions

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

Properties

| Improve this Doc View Source

ExportAs

Format to which the file can be exported to.

Declaration
public string ExportAs { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc 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
System.Collections.Generic.IList<System.String>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ExportInfo(String, IEnumerable<String>)
  • Properties
    • ExportAs
    • ExportOptions
Back to top Generated by DocFX