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索引鍵和Object自 JSON 字串中的值,然後將一般Dictionary<TKey, TValue>篩選KeyValuePairDictionary<TKey, TValue>從一般的值。