Class PropertyFieldTemplate
Defines how a single property field may be structured. Used exclusively by PropertyGroupTemplate.
Inheritance
System.Object
PropertyFieldTemplate
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 PropertyFieldTemplate
Constructors
| Improve this Doc View SourcePropertyFieldTemplate(String, String, PropertyType)
Initializes a new instance of the PropertyFieldTemplate class.
Declaration
public PropertyFieldTemplate(string name, string description, PropertyType type)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | Key of the property field being described. Property field keys can be up to 256 bytes. |
System.String | description | Description of the property field. Property field descriptions can be up to 1024 bytes. |
PropertyType | type | Data type of the value of this property field. This type will be enforced upon property creation and modifications. |
Properties
| Improve this Doc View SourceDescription
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 |
---|---|
System.String |
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 |
---|---|
System.String |
Type
Data type of the value of this property field. This type will be enforced upon property creation and modifications.
Declaration
public PropertyType Type { get; protected set; }
Property Value
Type | Description |
---|---|
PropertyType |