Return the DocValues used by the function query.

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

Syntax

C#
public abstract DocValues GetValues(
	IndexReader reader
)
Visual Basic
Public MustOverride Function GetValues ( _
	reader As IndexReader _
) As DocValues
Visual C++
public:
virtual DocValues^ GetValues(
	IndexReader^ reader
) abstract

Parameters

reader
Type: Lucene.Net.Index..::..IndexReader
the IndexReader used to read these values. If any caching is involved, that caching would also be IndexReader based.

Return Value

[Missing <returns> documentation for "M:Lucene.Net.Search.Function.ValueSource.GetValues(Lucene.Net.Index.IndexReader)"]

See Also