ServiceLimits Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
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
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.
O número máximo de campos do tipo Collection(Edm.ComplexType) permitidos em um índice.
O número máximo de objetos em coleções complexas permitidas por documento.
Aplica-se a
Azure SDK for .NET