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.
Inheritance
System.Object
Scorer.ChildScorer
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Lucene.Net.Search
Assembly: Lucene.Net.dll
Syntax
public class ChildScorer
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 |