Class WeightedTerm
Lightweight class to hold term and a Weight value used for scoring this term
Inherited Members
Namespace: Lucene.Net.Search.Highlight
Assembly: Lucene.Net.Highlighter.dll
Syntax
public class WeightedTerm
Constructors
WeightedTerm(float, string)
Lightweight class to hold term and a Weight value used for scoring this term
Declaration
public WeightedTerm(float weight, string term)
Parameters
Type | Name | Description |
---|---|---|
float | weight | |
string | term |
Properties
Term
the term value (stemmed)
Declaration
public virtual string Term { get; set; }
Property Value
Type | Description |
---|---|
string |
Weight
the Weight associated with this term
Declaration
public virtual float Weight { get; set; }
Property Value
Type | Description |
---|---|
float |