Freigeben über


ServiceLimits Konstruktoren

Definition

Überlädt

ServiceLimits()

Initialisiert eine neue instance der ServiceLimits-Klasse.

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

Initialisiert eine neue instance der ServiceLimits-Klasse.

ServiceLimits()

Quelle:
ServiceLimits.cs

Initialisiert eine neue instance der ServiceLimits-Klasse.

public ServiceLimits ();
Public Sub New ()

Gilt für:

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

Quelle:
ServiceLimits.cs

Initialisiert eine neue instance der ServiceLimits-Klasse.

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)

Parameter

maxFieldsPerIndex
Nullable<Int32>

Die maximal zulässigen Felder pro Index.

maxFieldNestingDepthPerIndex
Nullable<Int32>

Die maximale Tiefe, die Sie in einem Index unterschachteln können, einschließlich des komplexen Felds auf oberster Ebene. Beispielsweise weist a/b/c eine Schachtelungstiefe von 3 auf.

maxComplexCollectionFieldsPerIndex
Nullable<Int32>

Die maximale Anzahl von Feldern vom Typ Collection(Edm.ComplexType), die in einem Index zulässig sind.

maxComplexObjectsInCollectionsPerDocument
Nullable<Int32>

Die maximale Anzahl von Objekten in komplexen Auflistungen, die pro Dokument zulässig sind.

Gilt für: