Just like
CopyC#
indexOf(int)
but searches for a number of terms at the same time. Returns an array that has the same size as the number of terms searched for, each slot containing the result of searching for that term number.

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

Syntax

C#
int[] IndexesOf(
	string[] terms,
	int start,
	int len
)
Visual Basic
Function IndexesOf ( _
	terms As String(), _
	start As Integer, _
	len As Integer _
) As Integer()
Visual C++
array<int>^ IndexesOf(
	array<String^>^ terms, 
	int start, 
	int len
)

Parameters

terms
Type: array<System..::..String>[]()[][]
array containing terms to look for
start
Type: System..::..Int32
index in the array where the list of terms starts
len
Type: System..::..Int32
the number of terms in the list

Return Value

[Missing <returns> documentation for "M:Lucene.Net.Index.TermFreqVector.IndexesOf(System.String[],System.Int32,System.Int32)"]

See Also