Class Scorer.ChildScorer
A child Scorer and its relationship to its parent. The meaning of the relationship depends upon the parent query.
Note
This API is experimental and might change in incompatible ways in the next release.
Inherited Members
Namespace: Lucene.Net.Search
Assembly: Lucene.Net.dll
Syntax
public class Scorer.ChildScorer
Constructors
ChildScorer(Scorer, string)
Creates a new Scorer.ChildScorer node with the specified relationship.
The relationship can be any be any string that makes sense to the parent Scorer.Declaration
public ChildScorer(Scorer child, string relationship)
Parameters
Type | Name | Description |
---|---|---|
Scorer | child | |
string | relationship |
Properties
Child
Child Scorer. (note this is typically a direct child, and may itself also have children).
Declaration
public Scorer Child { get; }
Property Value
Type | Description |
---|---|
Scorer |
Relationship
An arbitrary string relating this scorer to the parent.
Declaration
public string Relationship { get; }
Property Value
Type | Description |
---|---|
string |