Dropbox .NET SDK
Show / Hide Table of Contents

Class RemoveTagArg

The remove tag arg object

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

Constructors

View Source

RemoveTagArg(string, string)

Initializes a new instance of the RemoveTagArg class.

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

Path to the item to tag.

string tagText

The tag to remove. Will be automatically converted to lowercase letters.

Properties

View Source

Path

Path to the item to tag.

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

TagText

The tag to remove. 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