Serializing and Deserializing JSON (2024)

Serializing and Deserializing JSON (1)

The quickest method of converting between JSON text and a .NET object is using the JsonSerializer. The JsonSerializer converts .NET objects into their JSON equivalent and back again by mapping the .NET object property names to the JSON property names and copies the values for you.

  • JsonConvert
  • JsonSerializer

Serializing and Deserializing JSON (2)JsonConvert

For simple scenarios where you want to convert to and from a JSON string, the SerializeObject and DeserializeObject methods on JsonConvert provide an easy-to-use wrapper over JsonSerializer.

Serializing and Deserializing JSON with JsonConvert

Copy

Product product = new Product();product.Name = "Apple";product.ExpiryDate = new DateTime(2008, 12, 28);product.Price = 3.99M;product.Sizes = new string[] { "Small", "Medium", "Large" };string output = JsonConvert.SerializeObject(product);//{// "Name": "Apple",// "ExpiryDate": "2008-12-28T00:00:00",// "Price": 3.99,// "Sizes": [// "Small",// "Medium",// "Large"// ]//}Product deserializedProduct = JsonConvert.DeserializeObject<Product>(output);

SerializeObject and DeserializeObject both have overloads that take a JsonSerializerSettings object.JsonSerializerSettings lets you use many of the JsonSerializer settings listed below while still using the simple serialization methods.

Serializing and Deserializing JSON (3)JsonSerializer

For more control over how an object is serialized, the JsonSerializer can be used directly.The JsonSerializer is able to read and write JSON text directly to a stream via JsonTextReaderand JsonTextWriter.Other kinds of JsonWriters can also be used, such asJTokenReader/JTokenWriter,to convert your object to and from LINQ to JSON objects, orBsonReader/BsonWriter, to convert to and from BSON.

Serializing JSON to a Stream with JsonSerializer

Copy

Product product = new Product();product.ExpiryDate = new DateTime(2008, 12, 28);JsonSerializer serializer = new JsonSerializer();serializer.Converters.Add(new JavaScriptDateTimeConverter());serializer.NullValueHandling = NullValueHandling.Ignore;using (StreamWriter sw = new StreamWriter(@"c:\json.txt"))using (JsonWriter writer = new JsonTextWriter(sw)){ serializer.Serialize(writer, product); // {"ExpiryDate":new Date(1230375600000),"Price":0}}

JsonSerializer has a number of properties on it to customize how it serializes JSON. These can also be used with the methods on JsonConvert via the JsonSerializerSettings overloads.

You can read more about the available JsonSerializer settings here: Serialization Settings

Serializing and Deserializing JSON (4)See Also

Serializing and Deserializing JSON (2024)
Top Articles
Disney Stock Price Today (NYSE: DIS) Quote, Market Cap, Chart
Disrupt Definition & Meaning | Britannica Dictionary
Main Moon Ilion Menu
Unblocked Games Premium Worlds Hardest Game
Limp Home Mode Maximum Derate
Exam With A Social Studies Section Crossword
Videos De Mexicanas Calientes
A.e.a.o.n.m.s
World History Kazwire
Oppenheimer Showtimes Near Cinemark Denton
Driving Directions To Atlanta
Scholarships | New Mexico State University
Washington Poe en Tilly Bradshaw 1 - Brandoffer, M.W. Craven | 9789024594917 | Boeken | bol
Directions To O'reilly's Near Me
Dr. med. Uta Krieg-Oehme - Lesen Sie Erfahrungsberichte und vereinbaren Sie einen Termin
Rams vs. Lions highlights: Detroit defeats Los Angeles 26-20 in overtime thriller
The Grand Canyon main water line has broken dozens of times. Why is it getting a major fix only now?
Lcwc 911 Live Incident List Live Status
Blue Rain Lubbock
Phoebus uses last-second touchdown to stun Salem for Class 4 football title
Empire Visionworks The Crossings Clifton Park Photos
Sullivan County Image Mate
Urban Dictionary Fov
Dr Seuss Star Bellied Sneetches Pdf
Weather October 15
Big Boobs Indian Photos
Brenda Song Wikifeet
Fox And Friends Mega Morning Deals July 2022
Walter King Tut Johnson Sentenced
Of An Age Showtimes Near Alamo Drafthouse Sloans Lake
Appleton Post Crescent Today's Obituaries
Lucky Larry's Latina's
Glossytightsglamour
آدرس جدید بند موویز
Scottsboro Daily Sentinel Obituaries
دانلود سریال خاندان اژدها دیجی موویز
Collier Urgent Care Park Shore
159R Bus Schedule Pdf
Atlanta Musicians Craigslist
Live Delta Flight Status - FlightAware
Chathuram Movie Download
814-747-6702
Leland Nc Craigslist
Pike County Buy Sale And Trade
4k Movie, Streaming, Blu-Ray Disc, and Home Theater Product Reviews & News
Child care centers take steps to avoid COVID-19 shutdowns; some require masks for kids
Craigslist Houses For Rent Little River Sc
Ts In Baton Rouge
The Hardest Quests in Old School RuneScape (Ranked) – FandomSpot
Overstock Comenity Login
Dinargurus
Latest Posts
Article information

Author: Annamae Dooley

Last Updated:

Views: 6072

Rating: 4.4 / 5 (45 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Annamae Dooley

Birthday: 2001-07-26

Address: 9687 Tambra Meadow, Bradleyhaven, TN 53219

Phone: +9316045904039

Job: Future Coordinator

Hobby: Archery, Couponing, Poi, Kite flying, Knitting, Rappelling, Baseball

Introduction: My name is Annamae Dooley, I am a witty, quaint, lovely, clever, rich, sparkling, powerful person who loves writing and wants to share my knowledge and understanding with you.