ServiceLimits Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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
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.
Nombre maximal de champs de type Collection (Edm.ComplexType) autorisés dans un index.
Nombre maximal d’objets dans les collections complexes autorisé par document.
S’applique à
Azure SDK for .NET