No announcements
Found 3610918 threads
-
0 Votes
Deserialize List of Dictionary in JSON
var json = JsonConvert.SerializeObject(listOfDict, new JsonSerializerSettings { TypeNameHandling = TypeNameHandling.Auto, TypeNameAssemblyFormat = ...Answered | 3 Replies | 15698 Views | Created by KapoorHarsh - Monday, February 18, 2013 6:37 PM | Last reply by sveinrune - Wednesday, February 20, 2013 6:56 PM -
5 Votes
Can't deserialize JSON string
Hi, Well this tutorial might help you out in parsing JSON, this tutorial also has some links that would help you doing ...Answered | 5 Replies | 6190 Views | Created by senloe - Saturday, February 19, 2011 8:38 PM | Last reply by Saad Mahmood - Tuesday, August 13, 2013 7:40 AM -
0 Votes
Deserialize JSON With Delimited String Directly to List Using TypeConverter
User-691759321 posted I could not use JsonConverter<List<string>> because we are still using version 9 of Newtonsoft.Json and it does ...Answered | 6 Replies | 1289 Views | Created by Anonymous - Friday, May 22, 2020 3:35 PM | Last reply by Anonymous - Tuesday, May 26, 2020 9:48 PM -
2 Votes
Deserializing JSON
The following tips are suggested just based on the JSON string.Answered | 4 Replies | 1318 Views | Created by Johngeh - Monday, May 5, 2014 10:39 PM | Last reply by Johngeh - Tuesday, May 6, 2014 7:50 PM -
2 Votes
Issues with JSON Deserialize
http://social.msdn.microsoft.com/Forums/en-US/wcf/threads http://social.msdn.microsoft.com/Forums/en-US/netfxbcl/threads htt ...Answered | 2 Replies | 13345 Views | Created by Pyromanci - Wednesday, March 24, 2010 5:45 PM | Last reply by Ed Price - MSFT - Monday, February 18, 2013 5:37 AM -
0 Votes
Deserializing a JSON array of mixed types
Hi Mike, In addition to what Juyu mentioned, you should also add the certain custom types(that will be deserialized from the JSON request ...Answered | 3 Replies | 11920 Views | Created by MikeHixson - Monday, October 11, 2010 12:46 AM | Last reply by krisragh - Wednesday, October 13, 2010 4:01 AM -
0 Votes
Json deserialization without knowledge of the key
Implemented using the JSON.NET library.Answered | 4 Replies | 1650 Views | Created by Rohit Katariya - Saturday, April 20, 2013 7:20 AM | Last reply by Rohit Katariya - Saturday, April 20, 2013 6:22 PM -
3 Votes
Deserialize JSON on WinCE and NET35
https://stackoverflow.com/questions/8901099/json-net-on-windows-ce-dotnet-2 CF 2.0 should be compatible with 3.5.Answered | 2 Replies | 8359 Views | Created by SteMMo - Thursday, June 22, 2017 9:50 AM | Last reply by SteMMo - Wednesday, September 27, 2017 8:01 AM -
1 Votes
Deserialize Json object
I've used it few times and it worked without any issues.Answered | 3 Replies | 2101 Views | Created by Deeptendra - Friday, April 19, 2013 10:04 AM | Last reply by Bazzzy - Thursday, April 25, 2013 7:41 AM -
0 Votes
deserialize json string builder object to c# object
type=forum&referrer=http://social.msdn.microsoft.com/Forums/en-US/netfxnetcom/thread/837493e9-82fb-41fc-80ad-b09afbef3cc2?Answered | 2 Replies | 10805 Views | Created by Ganesh_Chennai - Tuesday, October 19, 2010 1:11 PM | Last reply by Mike Dos Zhang - Thursday, October 21, 2010 7:15 AM -
0 Votes
JSON deserialization with JSON.NET or JavaScriptSerializer
Hi, I try deserialize JSON string in this format: { "newNickInfo": { "2775040": { ...Answered | 2 Replies | 10227 Views | Created by jminarik - Sunday, November 14, 2010 12:29 PM | Last reply by jminarik - Wednesday, November 17, 2010 3:20 PM -
0 Votes
How to serialize Deserialize DataTable to json file
It should be: DataTable dataTable = JsonConvert.DeserializeObject<DataTable>(json); Best ...Answered | 2 Replies | 3606 Views | Created by Sudip_inn - Wednesday, October 14, 2020 8:33 PM | Last reply by Timon Yang - Thursday, October 15, 2020 1:56 AM -
0 Votes
[WPSL]Deserialize JSON to Dictionary with DataContractJsonSerializer
I read that DataContractJsonSerializer has problem with deserializing dictionaries, so the alternative was to ...Answered | 4 Replies | 742 Views | Created by sara_ss - Monday, September 21, 2015 7:17 AM | Last reply by sara_ss - Monday, September 21, 2015 1:01 PM -
0 Votes
How to deserialize json string to structure inside class in C#?
Here my json...Answered | 3 Replies | 7235 Views | Created by Sushil Bhat - Thursday, October 6, 2016 5:40 AM | Last reply by Sergio Russo - Thursday, October 6, 2016 10:40 AM -
2 Votes
How to deserialize json and bind it to datagridview
Hi , You can refer below link http://stackoverflow.com/questions/11981282/convert-json-to-datatable Or ...Answered | 4 Replies | 12180 Views | Created by Ivy2014 - Friday, August 28, 2015 12:22 PM | Last reply by Ivy2014 - Saturday, August 29, 2015 4:34 PM -
0 Votes
Deserialize Json file
When you use Newtonsoft.Json.Linq.JObject.Parse(jsontext) it returns JObject and it hasn't Item property.Answered | 2 Replies | 4732 Views | Created by steve_henry - Monday, March 21, 2016 3:42 AM | Last reply by steve_henry - Monday, March 28, 2016 2:13 AM -
0 Votes
JSON Deserializer issue
If you have Visual Studio 2015, then copy the above “{…}” fragment to Clipboard, go to any .cs file, and then select from menu: Edit à Paste Special à Paste ...Answered | 3 Replies | 758 Views | Created by Daniel CL - Wednesday, June 8, 2016 7:47 PM | Last reply by Viorel_ - Thursday, June 9, 2016 6:10 AM -
0 Votes
Serialize Treeview to JSON and Deserialize back to Treeview
Hi itsaliakber5253, I would suggest that you use JSON.Net(link as below) to serialize and deserialize your treeNode.Answered | 2 Replies | 9786 Views | Created by itsaliakber5253 - Wednesday, February 10, 2016 4:28 PM | Last reply by MrBjornH - Monday, June 15, 2020 10:51 AM -
4 Votes
Json deserialization over a WCF service
Have you tried creating a new file within the solution explorer with same contents as your json file?Answered | 3 Replies | 2228 Views | Created by Jibrohni - Wednesday, July 10, 2013 7:31 PM | Last reply by - Tuesday, August 13, 2013 7:41 AM -
1 Votes
How to deserialize json string in c++ without using any third party library
In case of managed C++/CLR you can use System::Web::Script::Serialization::JavaScriptSerializer.Answered | 3 Replies | 8306 Views | Created by Sachin Patwal - Tuesday, April 24, 2012 4:52 AM | Last reply by Viorel_ - Tuesday, April 24, 2012 7:32 AM - Items 1 to 20 of 3610918 Next ›
No announcements