34 lines
912 B
C#
34 lines
912 B
C#
namespace Umbraco.Examine
|
|
{
|
|
/// <summary>
|
|
/// The index types stored in the Lucene Index
|
|
/// </summary>
|
|
public static class IndexTypes
|
|
{
|
|
|
|
/// <summary>
|
|
/// The content index type
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Is lower case because the Standard Analyzer requires lower case
|
|
/// </remarks>
|
|
public const string Content = "content";
|
|
|
|
/// <summary>
|
|
/// The media index type
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Is lower case because the Standard Analyzer requires lower case
|
|
/// </remarks>
|
|
public const string Media = "media";
|
|
|
|
/// <summary>
|
|
/// The member index type
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Is lower case because the Standard Analyzer requires lower case
|
|
/// </remarks>
|
|
public const string Member = "member";
|
|
}
|
|
}
|