An explanation of the score computation for the named document.

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

Syntax

C#
public abstract Explanation Explain(
	IndexReader reader,
	int doc
)
Visual Basic
Public MustOverride Function Explain ( _
	reader As IndexReader, _
	doc As Integer _
) As Explanation
Visual C++
public:
virtual Explanation^ Explain(
	IndexReader^ reader, 
	int doc
) abstract

Parameters

reader
Type: Lucene.Net.Index..::..IndexReader
sub-reader containing the give doc
doc
Type: System..::..Int32

[Missing <param name="doc"/> documentation for "M:Lucene.Net.Search.Weight.Explain(Lucene.Net.Index.IndexReader,System.Int32)"]

Return Value

an Explanation for the score

See Also