Files
Umbraco-CMS/src/Umbraco.Examine/IndexTypes.cs

34 lines
912 B
C#
Raw Normal View History

2018-11-28 14:55:05 +11:00
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";
}
}