Dropbox .NET SDK
Show / Hide Table of Contents

Class PropertiesSearchMatch

The properties search match object

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

Constructors

View Source

PropertiesSearchMatch(string, string, bool, IEnumerable<PropertyGroup>)

Initializes a new instance of the PropertiesSearchMatch class.

Declaration
public PropertiesSearchMatch(string id, string path, bool isDeleted, IEnumerable<PropertyGroup> propertyGroups)
Parameters
Type Name Description
string id

The ID for the matched file or folder.

string path

The path for the matched file or folder.

bool isDeleted

Whether the file or folder is deleted.

IEnumerable<PropertyGroup> propertyGroups

List of custom property groups associated with the file.

Properties

View Source

Id

The ID for the matched file or folder.

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

IsDeleted

Whether the file or folder is deleted.

Declaration
public bool IsDeleted { get; protected set; }
Property Value
Type Description
bool
View Source

Path

The path for the matched file or folder.

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

PropertyGroups

List of custom property groups associated with the file.

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