Compartilhar via


ServiceLimits Construtores

Definição

Sobrecargas

ServiceLimits()

Inicializa uma nova instância da classe ServiceLimits.

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

Inicializa uma nova instância da classe ServiceLimits.

ServiceLimits()

Origem:
ServiceLimits.cs

Inicializa uma nova instância da classe ServiceLimits.

public ServiceLimits ();
Public Sub New ()

Aplica-se a

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

Origem:
ServiceLimits.cs

Inicializa uma nova instância da 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)

Parâmetros

maxFieldsPerIndex
Nullable<Int32>

Os campos máximos permitidos por índice.

maxFieldNestingDepthPerIndex
Nullable<Int32>

A profundidade máxima que você pode aninhar subcampos em um índice, incluindo o campo complexo de nível superior. Por exemplo, a/b/c tem uma profundidade de aninhamento de 3.

maxComplexCollectionFieldsPerIndex
Nullable<Int32>

O número máximo de campos do tipo Collection(Edm.ComplexType) permitidos em um índice.

maxComplexObjectsInCollectionsPerDocument
Nullable<Int32>

O número máximo de objetos em coleções complexas permitidas por documento.

Aplica-se a