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
System.Object
PropertyGroup
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.FileProperties
Assembly: Dropbox.Api.dll
Syntax
public class PropertyGroup
Constructors
| Improve this Doc View SourcePropertyGroup(String, IEnumerable<PropertyField>)
Initializes a new instance of the PropertyGroup class.
Declaration
public PropertyGroup(string templateId, IEnumerable<PropertyField> fields)
Parameters
Type | Name | Description |
---|---|---|
System.String | templateId | A unique identifier for the associated template. |
System.Collections.Generic.IEnumerable<PropertyField> | fields | The actual properties associated with the template. There can be up to 32 property types per template. |
Properties
| Improve this Doc View SourceFields
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 |
---|---|
System.Collections.Generic.IList<PropertyField> |
TemplateId
A unique identifier for the associated template.
Declaration
public string TemplateId { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |