Partager via


ServiceLimits Constructeurs

Définition

Surcharges

ServiceLimits()

Initialise une nouvelle instance de la classe ServiceLimits.

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

Initialise une nouvelle instance de la classe ServiceLimits.

ServiceLimits()

Source:
ServiceLimits.cs

Initialise une nouvelle instance de la classe ServiceLimits.

public ServiceLimits ();
Public Sub New ()

S’applique à

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

Source:
ServiceLimits.cs

Initialise une nouvelle instance de la classe 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)

Paramètres

maxFieldsPerIndex
Nullable<Int32>

Nombre maximal de champs autorisés par index.

maxFieldNestingDepthPerIndex
Nullable<Int32>

Profondeur maximale que vous pouvez imbriquer les sous-champs dans un index, y compris le champ complexe de niveau supérieur. Par exemple, a/b/c a une profondeur d’imbrication de 3.

maxComplexCollectionFieldsPerIndex
Nullable<Int32>

Nombre maximal de champs de type Collection (Edm.ComplexType) autorisés dans un index.

maxComplexObjectsInCollectionsPerDocument
Nullable<Int32>

Nombre maximal d’objets dans les collections complexes autorisé par document.

S’applique à