JsonReader.ReadDictionary<T> 方法
创建常规Dictionary<TKey, TValue> JSON 字符串中从通用值。此成员仅供内部使用,不能直接在您的代码中使用。
命名空间: Microsoft.SharePoint.Client
程序集: Microsoft.SharePoint.Client.Silverlight.Runtime(位于 Microsoft.SharePoint.Client.Silverlight.Runtime.dll 中); Microsoft.SharePoint.Client.Phone.Runtime(位于 Microsoft.SharePoint.Client.Phone.Runtime.dll 中) Microsoft.SharePoint.Client.Runtime(位于 Microsoft.SharePoint.Client.Runtime.dll 中)
语法
声明
Public Function ReadDictionary(Of T) As Dictionary(Of String, T)
用法
Dim instance As JsonReader
Dim returnValue As Dictionary(Of String, T)
returnValue = instance.ReadDictionary()
public Dictionary<string, T> ReadDictionary<T>()
类型参数
- T
在词典中的值的类型。
返回值
类型:System.Collections.Generic.Dictionary<String, T>
Dictionary<TKey, TValue> .
备注
此方法创建Dictionary<TKey, TValue>String的键和 JSON 字符串中从Object的值,然后再到通用Dictionary<TKey, TValue>进行筛选的通用值与Dictionary<TKey, TValue>KeyValuePair 。