你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

ServiceLimits 构造函数

定义

重载

ServiceLimits()

初始化 ServiceLimits 类的新实例。

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

初始化 ServiceLimits 类的新实例。

ServiceLimits()

Source:
ServiceLimits.cs

初始化 ServiceLimits 类的新实例。

public ServiceLimits ();
Public Sub New ()

适用于

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

Source:
ServiceLimits.cs

初始化 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)

参数

maxFieldsPerIndex
Nullable<Int32>

每个索引允许的最大字段数。

maxFieldNestingDepthPerIndex
Nullable<Int32>

可以在索引中嵌套子字段的最大深度,包括顶级复杂字段。 例如,a/b/c 的嵌套深度为 3。

maxComplexCollectionFieldsPerIndex
Nullable<Int32>

索引中允许的集合 (Edm.ComplexType 类型的最大字段数) 。

maxComplexObjectsInCollectionsPerDocument
Nullable<Int32>

每个文档允许的复杂集合中的最大对象数。

适用于