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 SourcePropertiesSearchMatch(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 SourceId
The ID for the matched file or folder.
Declaration
public string Id { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
IsDeleted
Whether the file or folder is deleted.
Declaration
public bool IsDeleted { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Path
The path for the matched file or folder.
Declaration
public string Path { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
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> |