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 Properties
Declaration
public PropertiesSearchMatch(string id, string path, bool isDeleted, IEnumerable<PropertyGroup> propertyGroups)
Parameters
Type | Name | Description |
---|---|---|
System. |
id | The ID for the matched file or folder. |
System. |
path | The path for the matched file or folder. |
System. |
isDeleted | Whether the file or folder is deleted. |
System. |
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. |
IsDeleted
Whether the file or folder is deleted.
Declaration
public bool IsDeleted { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
Path
The path for the matched file or folder.
Declaration
public string Path { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
PropertyGroups
List of custom property groups associated with the file.
Declaration
public IList<PropertyGroup> PropertyGroups { get; protected set; }
Property Value
Type | Description |
---|---|
System. |