Validation method to determine whether a docid should be in the result set.

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

Syntax

C#
public abstract bool Match(
	int doc
)
Visual Basic
Public MustOverride Function Match ( _
	doc As Integer _
) As Boolean
Visual C++
public:
virtual bool Match(
	int doc
) abstract

Parameters

doc
Type: System..::..Int32
docid to be tested

Return Value

true if input docid should be in the result set, false otherwise.

See Also