Class IndexPopulator<TIndex>
An IIndexPopulator that is automatically associated to any index of type TIndex
Namespace: Umbraco.Cms.Infrastructure.Examine
Assembly: Umbraco.Infrastructure.dll
Syntax
public abstract class IndexPopulator<TIndex> : IndexPopulator, IIndexPopulator where TIndex : IIndex
Type Parameters
| Name | Description |
|---|---|
| TIndex |
Constructors
View SourceIndexPopulator()
Declaration
protected IndexPopulator()
Methods
View SourceIsRegistered(IIndex)
Determines whether the specified index is registered.
Declaration
public override bool IsRegistered(IIndex index)
Parameters
| Type | Name | Description |
|---|---|---|
| IIndex | index | The index to check for registration. |
Returns
| Type | Description |
|---|---|
| bool | True if the index is registered; otherwise, false. |
IsRegistered(TIndex)
Determines whether the specified index is registered.
Declaration
public virtual bool IsRegistered(TIndex index)
Parameters
| Type | Name | Description |
|---|---|---|
| TIndex | index | The index to check for registration. |
Returns
| Type | Description |
|---|---|
| bool |
|