Esta es la primera vez que uso json.net y no puedo resolverlo. Aquí está mi código a continuación.No se puede deserializar json usando json.net
// Constructor
public MainPage()
{
InitializeComponent();
}
private void btnRefreshTweets_Click(object sender, RoutedEventArgs e)
{
string ServerURL = @"http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StateCityHighway_USA/MapServer/1/query?text=e&geometry=&geometryType=esriGeometryPoint&inSR=&spatialRel=esriSpatialRelIntersects&relationParam=&objectIds=&where=&time=&returnCountOnly=false&returnIdsOnly=false&returnGeometry=false&maxAllowableOffset=&outSR=&outFields=&f=json";
WebClient webClient = new WebClient();
webClient.DownloadStringCompleted += new DownloadStringCompletedEventHandler(webClient_DownloadStringCompleted);
webClient.DownloadStringAsync(new Uri(ServerURL));
}
void webClient_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
{
if (e.Error != null)
{
return;
}
List<Attributes> tweets = JsonConvert.DeserializeObject<List<Attributes>>(e.Result);
this.lbTweets.ItemsSource = tweets;
}
public class Attributes
{
public string STATE_NAME { get; set; }
}
No puedo deserializar los atributos STATE_NAME. ¿Qué me estoy perdiendo?
sigo recibiendo este error
"No se puede deserializar objeto JSON en tipo 'System.Collections.Generic.List`1 [+ WPJsonSample.MainPage Atributos]'. Línea 1, la posición 20."
El JSON no es sólo una lista, tiene otras cosas también, como "displayFieldName", "fieldAliases", "campos y 'características' (su lista). No estoy seguro de si eso hace una diferencia para json.net, pero trate de hacer un objeto para dar cabida a todos ellos tal vez? – blitzen
Me gustaría pagar esta publicación antes de continuar con json.net. Esto es muy simple: http: //www.drowningintechnicaldebt.com/ShawnWeisfeld/archive/2010/08/22/using-c-4.0-and-dynamic-to-parse-json.aspx –