MagnitudeScoringParameters Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
MagnitudeScoringParameters() |
Initializes a new instance of the MagnitudeScoringParameters class. |
MagnitudeScoringParameters(Double, Double, Nullable<Boolean>) |
Initializes a new instance of the MagnitudeScoringParameters class. |
MagnitudeScoringParameters()
Initializes a new instance of the MagnitudeScoringParameters class.
public MagnitudeScoringParameters ();
Public Sub New ()
Applies to
MagnitudeScoringParameters(Double, Double, Nullable<Boolean>)
Initializes a new instance of the MagnitudeScoringParameters class.
public MagnitudeScoringParameters (double boostingRangeStart, double boostingRangeEnd, bool? shouldBoostBeyondRangeByConstant = default);
new Microsoft.Azure.Search.Models.MagnitudeScoringParameters : double * double * Nullable<bool> -> Microsoft.Azure.Search.Models.MagnitudeScoringParameters
Public Sub New (boostingRangeStart As Double, boostingRangeEnd As Double, Optional shouldBoostBeyondRangeByConstant As Nullable(Of Boolean) = Nothing)
Parameters
- boostingRangeStart
- Double
The field value at which boosting starts.
- boostingRangeEnd
- Double
The field value at which boosting ends.
A value indicating whether to apply a constant boost for field values beyond the range end value; default is false.