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

IndexAction.Delete 方法

定义

重载

Delete(String, String)

创建用于删除文档的新 IndexAction。

Delete<T>(T)

创建用于删除文档的新 IndexAction。

Delete(String, String)

Source:
IndexAction.Customization.cs

创建用于删除文档的新 IndexAction。

public static Microsoft.Azure.Search.Models.IndexAction<Microsoft.Azure.Search.Models.Document> Delete (string keyName, string keyValue);
static member Delete : string * string -> Microsoft.Azure.Search.Models.IndexAction<Microsoft.Azure.Search.Models.Document>
Public Shared Function Delete (keyName As String, keyValue As String) As IndexAction(Of Document)

参数

keyName
String

索引的键字段的名称。

keyValue
String

要删除的文档的键。

返回

新的 IndexAction。

适用于

Delete<T>(T)

Source:
IndexAction.Customization.cs

创建用于删除文档的新 IndexAction。

public static Microsoft.Azure.Search.Models.IndexAction<T> Delete<T> (T document);
static member Delete : 'T -> Microsoft.Azure.Search.Models.IndexAction<'T>
Public Shared Function Delete(Of T) (document As T) As IndexAction(Of T)

类型参数

T

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

参数

document
T

要删除的文档;键以外的字段将被忽略。

返回

新的 IndexAction。

适用于