Class MagnitudeScoringParameters
Provides parameter values to a magnitude scoring function.
Inheritance
System.Object
MagnitudeScoringParameters
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Search.Documents.dll
Syntax
public class MagnitudeScoringParameters
Constructors
MagnitudeScoringParameters(Double, Double)
Initializes a new instance of MagnitudeScoringParameters.
Declaration
public MagnitudeScoringParameters (double boostingRangeStart, double boostingRangeEnd);
Parameters
System.Double
boostingRangeStart
The field value at which boosting starts. |
System.Double
boostingRangeEnd
The field value at which boosting ends. |
Properties
BoostingRangeEnd
The field value at which boosting ends.
Declaration
public double BoostingRangeEnd { get; set; }
Property Value
System.Double
|
BoostingRangeStart
The field value at which boosting starts.
Declaration
public double BoostingRangeStart { get; set; }
Property Value
System.Double
|
ShouldBoostBeyondRangeByConstant
A value indicating whether to apply a constant boost for field values beyond the range end value; default is false.
Declaration
public Nullable<bool> ShouldBoostBeyondRangeByConstant { get; set; }
Property Value
System.Nullable<System.Boolean>
|