次の方法で共有


ScoringProfile コンストラクター

定義

オーバーロード

ScoringProfile()

ScoringProfile クラスの新しいインスタンスを初期化します。

ScoringProfile(String, TextWeights, IList<ScoringFunction>, Nullable<ScoringFunctionAggregation>)

ScoringProfile クラスの新しいインスタンスを初期化します。

ScoringProfile()

ソース:
ScoringProfile.cs

ScoringProfile クラスの新しいインスタンスを初期化します。

public ScoringProfile ();
Public Sub New ()

適用対象

ScoringProfile(String, TextWeights, IList<ScoringFunction>, Nullable<ScoringFunctionAggregation>)

ソース:
ScoringProfile.cs

ScoringProfile クラスの新しいインスタンスを初期化します。

public ScoringProfile (string name, Microsoft.Azure.Search.Models.TextWeights textWeights = default, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.ScoringFunction> functions = default, Microsoft.Azure.Search.Models.ScoringFunctionAggregation? functionAggregation = default);
new Microsoft.Azure.Search.Models.ScoringProfile : string * Microsoft.Azure.Search.Models.TextWeights * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.ScoringFunction> * Nullable<Microsoft.Azure.Search.Models.ScoringFunctionAggregation> -> Microsoft.Azure.Search.Models.ScoringProfile
Public Sub New (name As String, Optional textWeights As TextWeights = Nothing, Optional functions As IList(Of ScoringFunction) = Nothing, Optional functionAggregation As Nullable(Of ScoringFunctionAggregation) = Nothing)

パラメーター

name
String

スコアリング プロファイルの名前。

textWeights
TextWeights

特定のインデックス フィールドのテキスト一致に基づいてスコアリングを向上させるパラメーター。

functions
IList<ScoringFunction>

ドキュメントのスコアリングに影響を与える関数のコレクション。

functionAggregation
Nullable<ScoringFunctionAggregation>

個々のスコアリング関数の結果を組み合わせる方法を示す値。 既定値は "Sum" です。 スコアリング関数がない場合は無視されます。 使用できる値は、'sum'、'average'、'minimum'、'maximum'、'firstMatching' です。

適用対象