Domande taggate «json.net»

Json.NET (noto anche come Newtonsoft.Json) è un popolare framework JSON ad alte prestazioni per .NET.


13
Come ignorare una proprietà in classe se nulla, usando json.net
sto usando Json.NET per serializzare una classe su JSON. Ho la classe in questo modo: class Test1 { [JsonProperty("id")] public string ID { get; set; } [JsonProperty("label")] public string Label { get; set; } [JsonProperty("url")] public string URL { get; set; } [JsonProperty("item")] public List<Test2> Test2List { get; set; } …
529 c#  json.net 





7
JSON Naming Convention [chiuso]
Chiuso . Questa domanda è basata sull'opinione . Al momento non accetta risposte. Vuoi migliorare questa domanda? Aggiorna la domanda in modo che possa essere risolta con fatti e citazioni modificando questo post . Chiuso 2 anni fa . Migliora questa domanda Esiste uno standard per la denominazione JSON? Vedo …
379 json  json.net 

11
Deserializzare l'oggetto JSON su .NET usando Newtonsoft (o forse LINQ to JSON?)
So che ci sono alcuni post su Newtonsoft, quindi spero che questo non sia esattamente una ripetizione ... Sto cercando di convertire i dati JSON restituiti dall'API di Kazaa in un bell'oggetto di qualche tipo WebClient client = new WebClient(); Stream stream = client.OpenRead("http://api.kazaa.com/api/v1/search.json?q=muse&type=Album"); StreamReader reader = new StreamReader(stream); List<string> …

9
Come implementare JsonConverter personalizzato in JSON.NET per deserializzare un elenco di oggetti di classe base?
Sto cercando di estendere l'esempio JSON.net fornito qui http://james.newtonking.com/projects/json/help/CustomCreationConverter.html Ho un'altra sottoclasse derivante dalla classe base / dall'interfaccia public class Person { public string FirstName { get; set; } public string LastName { get; set; } } public class Employee : Person { public string Department { get; set; } …

5
.NET NewtonSoft JSON deserializza la mappa con un nome di proprietà diverso
Ho seguito la stringa JSON ricevuta da una parte esterna. { "team":[ { "v1":"", "attributes":{ "eighty_min_score":"", "home_or_away":"home", "score":"22", "team_id":"500" } }, { "v1":"", "attributes":{ "eighty_min_score":"", "home_or_away":"away", "score":"30", "team_id":"600" } } ] } Le mie lezioni di mappatura: public class Attributes { public string eighty_min_score { get; set; } public string …



3
Come deserializzare un oggetto JObject in .NET
Uso felicemente la libreria JSON di Newtonsoft . Ad esempio, vorrei creare un JObjectda un oggetto .NET, in questo caso un'istanza di eccezione (potrebbe o non potrebbe essere una sottoclasse) if (result is Exception) var jobjectInstance = JObject.FromObject(result); ora so che la libreria può deserializzare il testo JSON (cioè una …

6
Convertire Newtonsoft.Json.Linq.JArray in un elenco di tipi di oggetti specifici
Ho la seguente variabile di tipo {Newtonsoft.Json.Linq.JArray}. properties["Value"] {[ { "Name": "Username", "Selected": true }, { "Name": "Password", "Selected": true } ]} Quello che voglio realizzare è convertire questo in List<SelectableEnumItem>cui SelectableEnumItemè il seguente tipo: public class SelectableEnumItem { public string Name { get; set; } public bool Selected { …
236 c#  json.net 

30
Impossibile caricare il file o l'assembly "Newtonsoft.Json, Version = 4.5.0.0, Culture = neutral, PublicKeyToken = 30ad4fe6b2a6aeed"
Ricevo l'errore System.IO.FileLoadException: impossibile caricare il file o l'assembly 'Newtonsoft.Json, Version = 4.5.0.0, Culture = neutral, PublicKeyToken = 30ad4fe6b2a6aeed' o una delle sue dipendenze. La definizione manifest dell'assembly individuato non corrisponde al riferimento dell'assembly. (Eccezione da HRESULT: 0x80131040) per la mia build CI Soluzione che ho provato <dependentAssembly> <assemblyIdentity name="Newtonsoft.Json" …
233 asp.net  json.net 

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.