Compartir a través de


del método JsonReader.ReadDictionary<T>

Crea un genérico Dictionary<TKey, TValue> con un valor de la cadena JSON genérico. Este miembro está reservado para uso interno y no debe usarse directamente desde el código.

Espacio de nombres:  Microsoft.SharePoint.Client
Ensamblados:   Microsoft.SharePoint.Client.Silverlight.Runtime (en Microsoft.SharePoint.Client.Silverlight.Runtime.dll);  Microsoft.SharePoint.Client.Phone.Runtime (en Microsoft.SharePoint.Client.Phone.Runtime.dll)  Microsoft.SharePoint.Client.Runtime (en Microsoft.SharePoint.Client.Runtime.dll)

Sintaxis

'Declaración
Public Function ReadDictionary(Of T) As Dictionary(Of String, T)
'Uso
Dim instance As JsonReader
Dim returnValue As Dictionary(Of String, T)

returnValue = instance.ReadDictionary()
public Dictionary<string, T> ReadDictionary<T>()

Parámetros de tipo

  • T
    El tipo de los valores en el diccionario.

Valor devuelto

Tipo: System.Collections.Generic.Dictionary<String, T>
Dictionary<TKey, TValue> .

Comentarios

Este método crea una Dictionary<TKey, TValue> con la clave de String y el valor de Object de la cadena JSON y, a continuación, filtra el KeyValuePair con el valor de la Dictionary<TKey, TValue> genérico en el genérico Dictionary<TKey, TValue>.

Vea también

Referencia

clase JsonReader

Miembros JsonReader

Sobrecarga ReadDictionary

Espacio de nombres Microsoft.SharePoint.Client