次の方法で共有


ServiceLimits コンストラクター

定義

オーバーロード

ServiceLimits()

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

ServiceLimits(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

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

ServiceLimits()

ソース:
ServiceLimits.cs

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

public ServiceLimits ();
Public Sub New ()

適用対象

ServiceLimits(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

ソース:
ServiceLimits.cs

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

public ServiceLimits (int? maxFieldsPerIndex = default, int? maxFieldNestingDepthPerIndex = default, int? maxComplexCollectionFieldsPerIndex = default, int? maxComplexObjectsInCollectionsPerDocument = default);
new Microsoft.Azure.Search.Models.ServiceLimits : Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Search.Models.ServiceLimits
Public Sub New (Optional maxFieldsPerIndex As Nullable(Of Integer) = Nothing, Optional maxFieldNestingDepthPerIndex As Nullable(Of Integer) = Nothing, Optional maxComplexCollectionFieldsPerIndex As Nullable(Of Integer) = Nothing, Optional maxComplexObjectsInCollectionsPerDocument As Nullable(Of Integer) = Nothing)

パラメーター

maxFieldsPerIndex
Nullable<Int32>

インデックスごとに許可される最大フィールド。

maxFieldNestingDepthPerIndex
Nullable<Int32>

最上位の複合フィールドを含む、インデックスにサブフィールドを入れ子にできる最大深度。 たとえば、a/b/c の入れ子の深さは 3 です。

maxComplexCollectionFieldsPerIndex
Nullable<Int32>

インデックスで使用できる Collection(Edm.ComplexType) 型のフィールドの最大数。

maxComplexObjectsInCollectionsPerDocument
Nullable<Int32>

ドキュメントごとに許可される複雑なコレクション内のオブジェクトの最大数。

適用対象