Dropbox .NET SDK
Show / Hide Table of Contents

Class PropertyField

Raw key/value data to be associated with a Dropbox file. Property fields are added to Dropbox files as a PropertyGroup.

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

Constructors

View Source

PropertyField(string, string)

Initializes a new instance of the PropertyField class.

Declaration
public PropertyField(string name, string value)
Parameters
Type Name Description
string name

Key of the property field associated with a file and template. Keys can be up to 256 bytes.

string value

Value of the property field associated with a file and template. Values can be up to 1024 bytes.

Properties

View Source

Name

Key of the property field associated with a file and template. Keys can be up to 256 bytes.

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

Value

Value of the property field associated with a file and template. Values can be up to 1024 bytes.

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