Dropbox .NET SDK
Show / Hide Table of Contents

Class UpdatePropertiesArg

The update properties arg object

Inheritance
object
UpdatePropertiesArg
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.FileProperties
Assembly: Dropbox.Api.dll
Syntax
public class UpdatePropertiesArg

Constructors

View Source

UpdatePropertiesArg(string, IEnumerable<PropertyGroupUpdate>)

Initializes a new instance of the UpdatePropertiesArg class.

Declaration
public UpdatePropertiesArg(string path, IEnumerable<PropertyGroupUpdate> updatePropertyGroups)
Parameters
Type Name Description
string path

A unique identifier for the file or folder.

IEnumerable<PropertyGroupUpdate> updatePropertyGroups

The property groups "delta" updates to apply.

Properties

View Source

Path

A unique identifier for the file or folder.

Declaration
public string Path { get; protected set; }
Property Value
Type Description
string
View Source

UpdatePropertyGroups

The property groups "delta" updates to apply.

Declaration
public IList<PropertyGroupUpdate> UpdatePropertyGroups { get; protected set; }
Property Value
Type Description
IList<PropertyGroupUpdate>
  • View Source
In this article
Back to top Dropbox .NET SDK