Dropbox .NET SDK
Show / Hide Table of Contents

Class AddTagArg

The add tag arg object

Inheritance
object
AddTagArg
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class AddTagArg

Constructors

View Source

AddTagArg(string, string)

Initializes a new instance of the AddTagArg class.

Declaration
public AddTagArg(string path, string tagText)
Parameters
Type Name Description
string path

Path to the item to be tagged.

string tagText

The value of the tag to add. Will be automatically converted to lowercase letters.

Properties

View Source

Path

Path to the item to be tagged.

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

TagText

The value of the tag to add. Will be automatically converted to lowercase letters.

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