Dropbox .NET SDK
Show / Hide Table of Contents

Class PropertyGroupUpdate

Property routes

Inheritance
object
PropertyGroupUpdate
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 PropertyGroupUpdate

Constructors

View Source

PropertyGroupUpdate(string, IEnumerable<PropertyField>, IEnumerable<string>)

Initializes a new instance of the PropertyGroupUpdate class.

Declaration
public PropertyGroupUpdate(string templateId, IEnumerable<PropertyField> addOrUpdateFields = null, IEnumerable<string> removeFields = null)
Parameters
Type Name Description
string templateId

A unique identifier for a property template.

IEnumerable<PropertyField> addOrUpdateFields

Property fields to update. If the property field already exists, it is updated. If the property field doesn't exist, it will be created as long as the property group already exists.

IEnumerable<string> removeFields

Property fields to remove (by name), provided they exist.

Properties

View Source

AddOrUpdateFields

Property fields to update. If the property field already exists, it is updated. If the property field doesn't exist, it will be created as long as the property group already exists.

Declaration
public IList<PropertyField> AddOrUpdateFields { get; protected set; }
Property Value
Type Description
IList<PropertyField>
View Source

RemoveFields

Property fields to remove (by name), provided they exist.

Declaration
public IList<string> RemoveFields { get; protected set; }
Property Value
Type Description
IList<string>
View Source

TemplateId

A unique identifier for a property template.

Declaration
public string TemplateId { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK