Show / Hide Table of Contents

Class ExportMetadata

The export metadata object

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

Constructors

| Improve this Doc View Source

ExportMetadata(String, UInt64, String, Nullable<Int64>)

Initializes a new instance of the ExportMetadata class.

Declaration
public ExportMetadata(string name, ulong size, string exportHash = null, long? paperRevision = null)
Parameters
Type Name Description
System.String name

The last component of the path (including extension). This never contains a slash.

System.UInt64 size

The file size in bytes.

System.String exportHash

A hash based on the exported file content. This field can be used to verify data integrity. Similar to content hash. For more information see our Content hash page.

System.Nullable<System.Int64> paperRevision

If the file is a Paper doc, this gives the latest doc revision which can be used in PaperUpdateAsync(PaperUpdateArg, Stream).

Properties

| Improve this Doc View Source

ExportHash

A hash based on the exported file content. This field can be used to verify data integrity. Similar to content hash. For more information see our Content hash page.

Declaration
public string ExportHash { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Name

The last component of the path (including extension). This never contains a slash.

Declaration
public string Name { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

PaperRevision

If the file is a Paper doc, this gives the latest doc revision which can be used in PaperUpdateAsync(PaperUpdateArg, Stream).

Declaration
public long? PaperRevision { get; protected set; }
Property Value
Type Description
System.Nullable<System.Int64>
| Improve this Doc View Source

Size

The file size in bytes.

Declaration
public ulong Size { get; protected set; }
Property Value
Type Description
System.UInt64

See Also

ExportResult
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ExportMetadata(String, UInt64, String, Nullable<Int64>)
  • Properties
    • ExportHash
    • Name
    • PaperRevision
    • Size
  • See Also
Back to top Generated by DocFX