Dela via


MagnitudeScoringParameters Constructors

Definition

Overloads

MagnitudeScoringParameters()

Initializes a new instance of the MagnitudeScoringParameters class.

MagnitudeScoringParameters(Double, Double, Nullable<Boolean>)

Initializes a new instance of the MagnitudeScoringParameters class.

MagnitudeScoringParameters()

Source:
MagnitudeScoringParameters.cs

Initializes a new instance of the MagnitudeScoringParameters class.

public MagnitudeScoringParameters ();
Public Sub New ()

Applies to

MagnitudeScoringParameters(Double, Double, Nullable<Boolean>)

Source:
MagnitudeScoringParameters.cs

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.

shouldBoostBeyondRangeByConstant
Nullable<Boolean>

A value indicating whether to apply a constant boost for field values beyond the range end value; default is false.

Applies to