Class PropertiesSearchMatch
The properties search match object
Inherited Members
Namespace: Dropbox.Api.FileProperties
Assembly: Dropbox.Api.dll
Syntax
public class PropertiesSearchMatch
Constructors
View SourcePropertiesSearchMatch(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 SourceId
The ID for the matched file or folder.
Declaration
public string Id { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
IsDeleted
Whether the file or folder is deleted.
Declaration
public bool IsDeleted { get; protected set; }
Property Value
| Type | Description |
|---|---|
| bool |
Path
The path for the matched file or folder.
Declaration
public string Path { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
PropertyGroups
List of custom property groups associated with the file.
Declaration
public IList<PropertyGroup> PropertyGroups { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<PropertyGroup> |