JsonReader.ReadDictionary 方法
從 JSON 字串建立Dictionary<TKey, TValue>物件。此成員是保留給內部使用,而不是用來直接從您的程式碼使用
命名空間: 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 As Dictionary(Of String, Object)
'用途
Dim instance As JsonReader
Dim returnValue As Dictionary(Of String, Object)
returnValue = instance.ReadDictionary()
public Dictionary<string, Object> ReadDictionary()
傳回值
類型:System.Collections.Generic.Dictionary<String, Object>
Dictionary<TKey, TValue> .
備註
這個方法呼叫ReadKeyValue()建立Dictionary<TKey, TValue>String索引鍵與Object的值。這個方法用來建立Dictionary<TKey, TValue> JSON 字串開頭必須 「 {」 和結尾 「} 」。