Dropbox .NET SDK
Show / Hide Table of Contents

Class PropertyGroup

A subset of the property fields described by the corresponding PropertyGroupTemplate. Properties are always added to a Dropbox file as a PropertyGroup. The possible key names and value types in this group are defined by the corresponding PropertyGroupTemplate.

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

Constructors

View Source

PropertyGroup(string, IEnumerable<PropertyField>)

Initializes a new instance of the PropertyGroup class.

Declaration
public PropertyGroup(string templateId, IEnumerable<PropertyField> fields)
Parameters
Type Name Description
string templateId

A unique identifier for the associated template.

IEnumerable<PropertyField> fields

The actual properties associated with the template. There can be up to 32 property types per template.

Properties

View Source

Fields

The actual properties associated with the template. There can be up to 32 property types per template.

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

TemplateId

A unique identifier for the associated template.

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