Return all term vectors stored for this document or null if the could not be read in.

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

Syntax

C#
public virtual TermFreqVector[] Get(
	int docNum
)
Visual Basic
Public Overridable Function Get ( _
	docNum As Integer _
) As TermFreqVector()
Visual C++
public:
virtual array<TermFreqVector^>^ Get(
	int docNum
)

Parameters

docNum
Type: System..::..Int32
The document number to retrieve the vector for

Return Value

All term frequency vectors

See Also