次の方法で共有


AggregateRating コンストラクター

定義

オーバーロード

AggregateRating()

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

AggregateRating(Double, String, Nullable<Double>, Nullable<Int32>)

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

AggregateRating()

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

public AggregateRating();
Public Sub New ()

適用対象

AggregateRating(Double, String, Nullable<Double>, Nullable<Int32>)

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

public AggregateRating(double ratingValue, string text = default, double? bestRating = default, int? reviewCount = default);
new Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.AggregateRating : double * string * Nullable<double> * Nullable<int> -> Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.AggregateRating
Public Sub New (ratingValue As Double, Optional text As String = Nothing, Optional bestRating As Nullable(Of Double) = Nothing, Optional reviewCount As Nullable(Of Integer) = Nothing)

パラメーター

ratingValue
Double

平均 (平均) の評価。 指定できる値は 1.0 から 5.0 です。

text
String

アイテムのテキスト表現。

bestRating
Nullable<Double>

評価が最も高いレビュー。 指定できる値は 1.0 から 5.0 です。

reviewCount
Nullable<Int32>

レシピが評価またはレビューされた回数。

適用対象