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

DocumentsOperationsExtensions.Index 方法

定义

重载

Index(IDocumentsOperations, IndexBatch<Document>, SearchRequestOptions)

将一批上传、合并和/或删除操作发送到搜索索引。 https://docs.microsoft.com/rest/api/searchservice/addupdate-or-delete-documents

Index<T>(IDocumentsOperations, IndexBatch<T>, SearchRequestOptions)

将一批上传、合并和/或删除操作发送到搜索索引。 https://docs.microsoft.com/rest/api/searchservice/addupdate-or-delete-documents

Index(IDocumentsOperations, IndexBatch<Document>, SearchRequestOptions)

Source:
DocumentsOperationsExtensions.cs

将一批上传、合并和/或删除操作发送到搜索索引。 https://docs.microsoft.com/rest/api/searchservice/addupdate-or-delete-documents

public static Microsoft.Azure.Search.Models.DocumentIndexResult Index (this Microsoft.Azure.Search.IDocumentsOperations operations, Microsoft.Azure.Search.Models.IndexBatch<Microsoft.Azure.Search.Models.Document> batch, Microsoft.Azure.Search.Models.SearchRequestOptions searchRequestOptions = default);
static member Index : Microsoft.Azure.Search.IDocumentsOperations * Microsoft.Azure.Search.Models.IndexBatch<Microsoft.Azure.Search.Models.Document> * Microsoft.Azure.Search.Models.SearchRequestOptions -> Microsoft.Azure.Search.Models.DocumentIndexResult
<Extension()>
Public Function Index (operations As IDocumentsOperations, batch As IndexBatch(Of Document), Optional searchRequestOptions As SearchRequestOptions = Nothing) As DocumentIndexResult

参数

operations
IDocumentsOperations

此扩展方法的操作组。

batch
IndexBatch<Document>

索引操作的批处理。

searchRequestOptions
SearchRequestOptions

操作的其他参数

返回

包含批处理中所有操作的操作状态的响应。

例外

当某些索引操作失败,但其他操作成功并修改了索引的状态时引发。 当搜索服务处于较重的索引负载下时,可能会发生这种情况。 请务必显式捕获此异常并检查其IndexResult属性。 此属性报告批处理中每个索引操作的状态,从而可以在部分失败后确定索引的状态。

注解

Index、IndexAsync 和 IndexWithHttpMessagesAsync 方法的非泛型重载会尽力尝试将响应有效负载中的 JSON 类型映射到 .NET 类型。 有关详细信息,请参阅GetWithHttpMessagesAsync(String, IEnumerable<String>, SearchRequestOptions, Dictionary<String,List<String>>, CancellationToken)

适用于

Index<T>(IDocumentsOperations, IndexBatch<T>, SearchRequestOptions)

Source:
DocumentsOperationsExtensions.cs

将一批上传、合并和/或删除操作发送到搜索索引。 https://docs.microsoft.com/rest/api/searchservice/addupdate-or-delete-documents

public static Microsoft.Azure.Search.Models.DocumentIndexResult Index<T> (this Microsoft.Azure.Search.IDocumentsOperations operations, Microsoft.Azure.Search.Models.IndexBatch<T> batch, Microsoft.Azure.Search.Models.SearchRequestOptions searchRequestOptions = default);
static member Index : Microsoft.Azure.Search.IDocumentsOperations * Microsoft.Azure.Search.Models.IndexBatch<'T> * Microsoft.Azure.Search.Models.SearchRequestOptions -> Microsoft.Azure.Search.Models.DocumentIndexResult
<Extension()>
Public Function Index(Of T) (operations As IDocumentsOperations, batch As IndexBatch(Of T), Optional searchRequestOptions As SearchRequestOptions = Nothing) As DocumentIndexResult

类型参数

T

映射到索引架构的 CLR 类型。 此类型的实例可以在索引中存储为文档。

参数

operations
IDocumentsOperations

此扩展方法的操作组。

batch
IndexBatch<T>

索引操作的批处理。

searchRequestOptions
SearchRequestOptions

操作的其他参数

返回

包含批处理中所有操作的操作状态的响应。

例外

当某些索引操作失败,但其他操作成功并修改了索引的状态时引发。 当搜索服务处于较重的索引负载下时,可能会发生这种情况。 请务必显式捕获此异常并检查其IndexResult属性。 此属性报告批处理中每个索引操作的状态,从而可以在部分失败后确定索引的状态。

注解

Index 和 IndexAsync 方法的泛型重载支持通过类型参数 T 将搜索字段类型映射到 .NET 类型。有关类型映射的更多详细信息,请参阅 GetWithHttpMessagesAsync<T>(String, IEnumerable<String>, SearchRequestOptions, Dictionary<String,List<String>>, CancellationToken)

适用于