Show / Hide Table of Contents

Class PropertiesSearchMatch

The properties search match object

Inheritance
System.Object
PropertiesSearchMatch
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.FileProperties
Assembly: Dropbox.Api.dll
Syntax
public class PropertiesSearchMatch

Constructors

| Improve this Doc View Source

PropertiesSearchMatch(String, String, Boolean, 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
System.String id

The ID for the matched file or folder.

System.String path

The path for the matched file or folder.

System.Boolean isDeleted

Whether the file or folder is deleted.

System.Collections.Generic.IEnumerable<PropertyGroup> propertyGroups

List of custom property groups associated with the file.

Properties

| Improve this Doc View Source

Id

The ID for the matched file or folder.

Declaration
public string Id { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

IsDeleted

Whether the file or folder is deleted.

Declaration
public bool IsDeleted { get; protected set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Path

The path for the matched file or folder.

Declaration
public string Path { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

PropertyGroups

List of custom property groups associated with the file.

Declaration
public IList<PropertyGroup> PropertyGroups { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<PropertyGroup>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • PropertiesSearchMatch(String, String, Boolean, IEnumerable<PropertyGroup>)
  • Properties
    • Id
    • IsDeleted
    • Path
    • PropertyGroups
Back to top Generated by DocFX