del método JsonReader.ReadKeyValue
Crea un objeto KeyValuePair<TKey, TValue> de la cadena JSON. 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 ReadKeyValue As KeyValuePair(Of String, Object)
'Uso
Dim instance As JsonReader
Dim returnValue As KeyValuePair(Of String, Object)
returnValue = instance.ReadKeyValue()
public KeyValuePair<string, Object> ReadKeyValue()
Valor devuelto
Tipo: System.Collections.Generic.KeyValuePair<String, Object>
KeyValuePair<TKey, TValue> .
Comentarios
Este método crea una KeyValuePair<TKey, TValue> con la clave de String y el valor de Object de la cadena JSON. La clave y el valor separados por el ":" en la cadena JSON.