Class SearchResourceResponseModel
Model containing search results for resource queries in the WebReportDesigner system.
Inheritance
Namespace: Telerik.WebReportDesigner.Services.Models
Assembly: Telerik.WebReportDesigner.Services.dll
Syntax
public class SearchResourceResponseModel
Remarks
Used to return search results from resource search operations, providing separate collections for folders and files that match the search criteria in the storage system.
Constructors
SearchResourceResponseModel()
Declaration
public SearchResourceResponseModel()
Properties
Files
Gets or sets the collection of files found in the search.
Declaration
public IEnumerable<ResourceFileModel> Files { get; set; }
Property Value
|
System.Collections.Generic.IEnumerable<ResourceFileModel>
|
Remarks
Contains file results that match the search criteria, providing access to file metadata and operations for discovered resources.
Folders
Gets or sets the collection of folders found in the search.
Declaration
public IEnumerable<ResourceFolderModel> Folders { get; set; }
Property Value
|
System.Collections.Generic.IEnumerable<ResourceFolderModel>
|
Remarks
Contains folder results that match the search criteria, enabling hierarchical navigation and folder-specific operations in search results.