Returns a {@link Status} instance detailing the state of the index.

Namespace: Lucene.Net.Index
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public virtual CheckIndex..::..Status CheckIndex_Renamed_Method(
	IList onlySegments
)
Visual Basic
Public Overridable Function CheckIndex_Renamed_Method ( _
	onlySegments As IList _
) As CheckIndex..::..Status
Visual C++
public:
virtual CheckIndex..::..Status^ CheckIndex_Renamed_Method(
	IList^ onlySegments
)

Parameters

onlySegments
Type: System.Collections..::..IList
list of specific segment names to check

As this method checks every byte in the specified segments, on a large index it can take quite a long time to run.

WARNING: make sure you only call this when the index is not opened by any writer.

Return Value

[Missing <returns> documentation for "M:Lucene.Net.Index.CheckIndex.CheckIndex_Renamed_Method(System.Collections.IList)"]

See Also