Dropbox .NET SDK
Show / Hide Table of Contents

Class PropertyGroupTemplate

Defines how a property group may be structured.

Inheritance
object
PropertyGroupTemplate
AddTemplateArg
GetTemplateResult
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 PropertyGroupTemplate

Constructors

View Source

PropertyGroupTemplate(string, string, IEnumerable<PropertyFieldTemplate>)

Initializes a new instance of the PropertyGroupTemplate class.

Declaration
public PropertyGroupTemplate(string name, string description, IEnumerable<PropertyFieldTemplate> fields)
Parameters
Type Name Description
string name

Display name for the template. Template names can be up to 256 bytes.

string description

Description for the template. Template descriptions can be up to 1024 bytes.

IEnumerable<PropertyFieldTemplate> fields

Definitions of the property fields associated with this template. There can be up to 32 properties in a single template.

Properties

View Source

Description

Description for the template. Template descriptions can be up to 1024 bytes.

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

Fields

Definitions of the property fields associated with this template. There can be up to 32 properties in a single template.

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

Name

Display name for the template. Template names can be up to 256 bytes.

Declaration
public string Name { get; protected set; }
Property Value
Type Description
string

See Also

AddTemplateArg
GetTemplateResult
  • View Source
In this article
Back to top Dropbox .NET SDK