View Source
Interface IBackOfficeExamineSearcher
Used to search the back office for Examine indexed entities (Documents, Media and Members)
Assembly: Umbraco.Infrastructure.dll
Syntax
public interface IBackOfficeExamineSearcher
Methods
View Source
Search(string, UmbracoEntityTypes, int, long, out long, string[]?, bool?, string?, bool)
Declaration
IEnumerable<ISearchResult> Search(string query, UmbracoEntityTypes entityType, int pageSize, long pageIndex, out long totalFound, string[]? contentTypeAliases, bool? trashed, string? searchFrom = null, bool ignoreUserStartNodes = false)
Parameters
| Type |
Name |
Description |
| string |
query |
|
| UmbracoEntityTypes |
entityType |
|
| int |
pageSize |
|
| long |
pageIndex |
|
| long |
totalFound |
|
| string[] |
contentTypeAliases |
|
| bool? |
trashed |
|
| string |
searchFrom |
|
| bool |
ignoreUserStartNodes |
|
Returns
| Type |
Description |
| IEnumerable<ISearchResult> |
|