Lucene.Net.Search.DisjunctionSumScorer.Score C# (CSharp) Method

Score() public method

Scores and collects all matching documents.
public Score ( Collector collector ) : void
collector Collector The collector to which all matching documents are passed through. ///
When this method is used the method should not be used. ///
return void
		public override void  Score(Collector collector)
		{
			collector.SetScorer(this);
			while (NextDoc() != NO_MORE_DOCS)
			{
				collector.Collect(currentDoc);
			}
		}

Same methods

DisjunctionSumScorer::Score ( Collector collector, int max, int firstDocID ) : bool
DisjunctionSumScorer::Score ( ) : float