Dropbox .NET SDK
Show / Hide Table of Contents

Class RemovePropertiesArg

The remove properties arg object

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

Constructors

View Source

RemovePropertiesArg(string, IEnumerable<string>)

Initializes a new instance of the RemovePropertiesArg class.

Declaration
public RemovePropertiesArg(string path, IEnumerable<string> propertyTemplateIds)
Parameters
Type Name Description
string path

A unique identifier for the file or folder.

IEnumerable<string> propertyTemplateIds

A list of identifiers for a template created by TemplatesAddForUserAsync(AddTemplateArg) or TemplatesAddForTeamAsync(AddTemplateArg).

Properties

View Source

Path

A unique identifier for the file or folder.

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

PropertyTemplateIds

A list of identifiers for a template created by TemplatesAddForUserAsync(AddTemplateArg) or TemplatesAddForTeamAsync(AddTemplateArg).

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