Dropbox .NET SDK
Show / Hide Table of Contents

Class GetTagsResult

The get tags result object

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

Constructors

View Source

GetTagsResult(IEnumerable<PathToTags>)

Initializes a new instance of the GetTagsResult class.

Declaration
public GetTagsResult(IEnumerable<PathToTags> pathsToTags)
Parameters
Type Name Description
IEnumerable<PathToTags> pathsToTags

List of paths and their corresponding tags.

Properties

View Source

PathsToTags

List of paths and their corresponding tags.

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