Share via


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

IndexBatch<T> 构造函数

定义

重载

IndexBatch<T>()

初始化 IndexBatch 类的新实例。

IndexBatch<T>(IEnumerable<IndexAction<T>>)

初始化 IndexBatch 类的新实例。

IndexBatch<T>()

Source:
IndexBatch.cs

初始化 IndexBatch 类的新实例。

public IndexBatch ();
Public Sub New ()

适用于

IndexBatch<T>(IEnumerable<IndexAction<T>>)

Source:
IndexBatch.cs

初始化 IndexBatch 类的新实例。

public IndexBatch (System.Collections.Generic.IEnumerable<Microsoft.Azure.Search.Models.IndexAction<T>> actions);
new Microsoft.Azure.Search.Models.IndexBatch<'T> : seq<Microsoft.Azure.Search.Models.IndexAction<'T>> -> Microsoft.Azure.Search.Models.IndexBatch<'T>
Public Sub New (actions As IEnumerable(Of IndexAction(Of T)))

参数

actions
IEnumerable<IndexAction<T>>

批处理中的操作。

适用于