Compartir a través de


ServiceLimits Constructores

Definición

Sobrecargas

ServiceLimits()

Inicializa una nueva instancia de la clase ServiceLimits.

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

Inicializa una nueva instancia de la clase ServiceLimits.

ServiceLimits()

Source:
ServiceLimits.cs

Inicializa una nueva instancia de la clase ServiceLimits.

public ServiceLimits ();
Public Sub New ()

Se aplica a

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

Source:
ServiceLimits.cs

Inicializa una nueva instancia de la clase 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)

Parámetros

maxFieldsPerIndex
Nullable<Int32>

Los campos máximos permitidos por índice.

maxFieldNestingDepthPerIndex
Nullable<Int32>

Profundidad máxima que puede anidar subcampos en un índice, incluido el campo complejo de nivel superior. Por ejemplo, a/b/c tiene una profundidad de anidamiento de 3.

maxComplexCollectionFieldsPerIndex
Nullable<Int32>

Número máximo de campos de tipo Collection(Edm.ComplexType) permitidos en un índice.

maxComplexObjectsInCollectionsPerDocument
Nullable<Int32>

Número máximo de objetos en colecciones complejas permitidas por documento.

Se aplica a