Interface IExamineManagerService
Defines the contract for managing Examine indexers and searchers within Umbraco CMS.
Namespace: Umbraco.Cms.Api.Management.Services
Assembly: Umbraco.Cms.Api.Management.dll
Syntax
public interface IExamineManagerService
Methods
View SourceTryFindSearcher(string, out ISearcher)
Attempts to find a searcher by its name.
Declaration
bool TryFindSearcher(string searcherName, out ISearcher searcher)
Parameters
| Type | Name | Description |
|---|---|---|
| string | searcherName | The name of the searcher to find. |
| ISearcher | searcher | When this method returns, contains the found searcher if the searcher was found; otherwise, null. |
Returns
| Type | Description |
|---|---|
| bool | True if the searcher was found; otherwise, false. |