Class Scorer.ChildScorer
A child Scorer and its relationship to its parent. The meaning of the relationship depends upon the parent query.
This is a Lucene.NET EXPERIMENTAL API, use at your own risk
Inheritance
System.Object
Scorer.ChildScorer
Namespace: Lucene.Net.Search
Assembly: Lucene.Net.dll
Syntax
public class ChildScorer : object
Constructors
| Improve this Doc View SourceChildScorer(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 | |
System.String | relationship |
Properties
| Improve this Doc View SourceChild
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 |
---|---|
System.String |