Class CommitInfo
The commit info object
Inherited Members
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class CommitInfo
Constructors
| Improve this Doc View SourceCommitInfo(String, WriteMode, Boolean, Nullable<DateTime>, Boolean, IEnumerable<PropertyGroup>, Boolean)
Initializes a new instance of the Commit
Declaration
public CommitInfo(string path, WriteMode mode = null, bool autorename = false, DateTime? clientModified = null, bool mute = false, IEnumerable<PropertyGroup> propertyGroups = null, bool strictConflict = false)
Parameters
Type | Name | Description |
---|---|---|
System. |
path | Path in the user's Dropbox to save the file. |
Write |
mode | Selects what to do if the file already exists. |
System. |
autorename | If there's a conflict, as determined by |
System. |
clientModified | The value to store as the |
System. |
mute | Normally, users are made aware of any file modifications in
their Dropbox account via notifications in the client software. If |
System. |
propertyGroups | List of custom properties to add to file. |
System. |
strictConflict | Be more strict about how each Write |
Properties
| Improve this Doc View SourceAutorename
If there's a conflict, as determined by Mode, have the Dropbox server try to autorename the file to avoid conflict.
Declaration
public bool Autorename { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
ClientModified
The value to store as the Client
Declaration
public DateTime? ClientModified { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
Mode
Selects what to do if the file already exists.
Declaration
public WriteMode Mode { get; protected set; }
Property Value
Type | Description |
---|---|
Write |
Mute
Normally, users are made aware of any file modifications in their Dropbox
account via notifications in the client software. If true
, this tells the
clients that this modification shouldn't result in a user notification.
Declaration
public bool Mute { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
Path
Path in the user's Dropbox to save the file.
Declaration
public string Path { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
PropertyGroups
List of custom properties to add to file.
Declaration
public IList<PropertyGroup> PropertyGroups { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
StrictConflict
Be more strict about how each Write
Declaration
public bool StrictConflict { get; protected set; }
Property Value
Type | Description |
---|---|
System. |