Class ExportMetadata
The export metadata object
Inheritance
Inherited Members
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class ExportMetadata
Constructors
| Improve this Doc View SourceExportMetadata(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 SourceExportHash
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 |
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 |
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> |
Size
The file size in bytes.
Declaration
public ulong Size { get; protected set; }
Property Value
Type | Description |
---|---|
System.UInt64 |