Top "Json-serialization" questions

What is deserialize and serialize in JSON?

I have seen the terms "deserialize" and "serialize" with JSON. What do they mean?

json serialization deserialization json-deserialization json-serialization
How do I serialize a C# anonymous type to a JSON string?

I'm attempting to use the following code to serialize an anonymous type to JSON: var serializer = new DataContractJsonSerializer(thing.GetType()); …

c# json anonymous-types datacontractjsonserializer json-serialization
JavaScriptSerializer is not allowed in .net core project?

I am working in .net core project. I want to serialize the objects using JavaScriptSerializer. JavaScriptSerializer Serializer = new JavaScriptSerializer(); I …

asp.net-core-2.1 jsonserializer json-serialization
System.Text.Json.JsonException: The input does not contain any JSON tokens

I'm just trying to use a Http POST method in a Blazor app through public async Task CreateUnit(UnitEntity unit) { …

json blazor json-deserialization json-serialization
net core web api json serialization - need fields prefixed with $

I'm using net core web api and need to return a payload with property name "$skip". I tried using the …

c# asp.net-core json-serialization
What is equivalent code settings for @JSonIgnore annotation?

I'm new to Java and Jackson and a lot of other technologies which I try to use, so I'd appreciate …

java json serialization jackson json-serialization