DropboxFileMetadata Class
Namespace | Skybrud.Social.Dropbox.Models.Files |
---|---|
Assembly | Skybrud.Social.Dropbox.dll |
Visibility | Public |
Inheritance |
Class representing the metadata of a Dropbox file.
public class DropboxFileMetadata : DropboxMetadata { }
Properties
Type | Name | Summary |
---|---|---|
EssentialsTime | ClientModified |
Gets the modification time set by the desktop client when the file was added to Dropbox. Since this time is not verified (the Dropbox server stores whatever the desktop client sends up), this should only be used for display purposes (such as sorting) and not, for example, to determine if a file has changed or not. |
EssentialsTime | ServerModified |
Gets the last time the file was modified on Dropbox. |
String | Rev |
Gets a unique identifier for the current revision of a file. This field is the same rev as elsewhere in the API and can be used to detect changes and avoid conflicts. |
long | Size |
Gets the size of the file in bytes. |
String | ContentHash |
Gets a hash of the file content. This field can be used to verify data integrity. |
String | Name (inherited from DropboxMetadata) |
Gets the last component of the path (including extension). This never contains a slash. |
String | Id (inherited from DropboxMetadata) |
Gets a unique identifier for the file or folder. |
String | PathLower (inherited from DropboxMetadata) |
Gets the lowercased full path in the user's Dropbox. This always starts with a slash. |
String | PathDisplay (inherited from DropboxMetadata) |
Gets the cased path to be used for display purposes only. |
JObject | JObject (inherited from JsonObjectBase) |
Methods
Parse(JObject)
(static)
Gets an instance of DropboxFileMetadata from the specified |