21 lines
484 B
C#
21 lines
484 B
C#
using Examine;
|
|
|
|
namespace Umbraco.Examine
|
|
{
|
|
public interface IIndexPopulator
|
|
{
|
|
/// <summary>
|
|
/// If this index is registered with this populator
|
|
/// </summary>
|
|
/// <param name="index"></param>
|
|
/// <returns></returns>
|
|
bool IsRegistered(IIndex index);
|
|
|
|
/// <summary>
|
|
/// Populate indexers
|
|
/// </summary>
|
|
/// <param name="indexes"></param>
|
|
void Populate(params IIndex[] indexes);
|
|
}
|
|
}
|