Interface ISearchable

Describes the searchability of an item.

Namespace: EPiServer.Search
Assembly: EPiServer.dll
Version: 8.11.0
Syntax
public interface ISearchable

Properties

AllowReIndexChildren

Gets a value indicating whether children of this content should be indexed.

Declaration
bool AllowReIndexChildren { get; }
Property Value
Type Description
System.Boolean

true if children should be indexed; otherwise, false.

IsSearchable

Gets a value indicating whether this instance is searchable.

Declaration
bool IsSearchable { get; }
Property Value
Type Description
System.Boolean

true if this instance is searchable; otherwise, false.

Remarks

The value of this property will be used by the search handlers to decide if this item should be added to the search index.

Extension Methods