Dropbox .NET SDK
Show / Hide Table of Contents

Class PropertyFieldTemplate

Defines how a single property field may be structured. Used exclusively by PropertyGroupTemplate.

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

Constructors

View Source

PropertyFieldTemplate(string, string, PropertyType)

Initializes a new instance of the PropertyFieldTemplate class.

Declaration
public PropertyFieldTemplate(string name, string description, PropertyType type)
Parameters
Type Name Description
string name

Key of the property field being described. Property field keys can be up to 256 bytes.

string description

Description of the property field. Property field descriptions can be up to 1024 bytes.

PropertyType type

The type

Properties

View Source

Description

Description of the property field. Property field descriptions can be up to 1024 bytes.

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

Name

Key of the property field being described. Property field keys can be up to 256 bytes.

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

Type

Gets the type of the property field template

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