By default, uses the {@link PayloadFunction} to score the payloads, but can be overridden to do other things.

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

Syntax

C#
protected internal virtual void ProcessPayloads(
	ICollection<byte[]> payLoads,
	int start,
	int end
)
Visual Basic
Protected Friend Overridable Sub ProcessPayloads ( _
	payLoads As ICollection(Of Byte()), _
	start As Integer, _
	end As Integer _
)
Visual C++
protected public:
virtual void ProcessPayloads(
	ICollection<array<unsigned char>^>^ payLoads, 
	int start, 
	int end
)

Parameters

payLoads
Type: System.Collections.Generic..::..ICollection<(Of <(<'array<Byte>[]()[][]>)>)>
The payloads
start
Type: System..::..Int32
The start position of the span being scored
end
Type: System..::..Int32
The end position of the span being scored

See Also