Scores and collects all matching documents.
Namespace: Lucene.Net.SearchAssembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1
Syntax
| C# |
|---|
public virtual void Score(
Collector collector
) |
| Visual Basic |
|---|
Public Overridable Sub Score ( _
collector As Collector _
) |
| Visual C++ |
|---|
public:
virtual void Score(
Collector^ collector
) |
Parameters
- collector
- Type: Lucene.Net.Search..::..Collector
The collector to which all matching documents are passed.
When this method is used the {@link #Explain(int)} method should not be used.
See Also