2018-11-28 14:55:05 +11:00
|
|
|
|
namespace Umbraco.Examine
|
2017-07-27 12:01:38 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <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";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|