你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
SearchDocument 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示从搜索或文档查找返回的未类型化文档。 它可以作为动态对象或字典进行访问。
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Search.Documents.Models.SearchDocumentConverter))]
public class SearchDocument : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string,object>>, System.Collections.Generic.IDictionary<string,object>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object>>
[<System.Text.Json.Serialization.JsonConverter(typeof(Azure.Search.Documents.Models.SearchDocumentConverter))>]
type SearchDocument = class
interface IDictionary<string, obj>
interface ICollection<KeyValuePair<string, obj>>
interface seq<KeyValuePair<string, obj>>
interface IEnumerable
Public Class SearchDocument
Implements ICollection(Of KeyValuePair(Of String, Object)), IDictionary(Of String, Object), IEnumerable(Of KeyValuePair(Of String, Object))
- 继承
-
SearchDocument
- 属性
- 实现
-
ICollection<KeyValuePair<String,Object>> ICollection<KeyValuePair<TKey,TValue>> IDictionary<String,Object> IEnumerable<KeyValuePair<String,Object>> IEnumerable<KeyValuePair<TKey,TValue>> IEnumerable<T> IEnumerable
构造函数
SearchDocument() |
初始化 SearchDocument 类的新实例。 |
SearchDocument(IDictionary<String,Object>) |
使用初始值初始化 SearchDocument 类的新实例。 |
属性
Count |
获取 ICollection<T> 中包含的元素数。 |
Item[String] |
获取或设置具有指定键的元素。 |
Keys |
获取包含 ICollection<T> 的键的 IDictionary<TKey,TValue>。 |
方法
显式接口实现
扩展方法
GetValueOrAdd<TKey,TValue>(IDictionary<TKey,TValue>, TKey, Func<TKey,TValue>) |
获取或添加与指定键关联的值。 |
GetValueOrDefault<TKey,TValue>(IDictionary<TKey,TValue>, TKey, TValue) |
获取与指定键关联的值。 |
AsFormattedString<TKey,TValue>(IDictionary<TKey,TValue>) |
表示从搜索或文档查找返回的未类型化文档。 它可以作为动态对象或字典进行访问。 |