<PackageReference Include="newtonsoft.json" Version="4.0.1" />

JsonSerializer

public class JsonSerializer
Serializes and deserializes objects into and from the JSON format. The JsonSerializer enables you to control how objects are encoded into JSON.
public virtual SerializationBinder Binder { get; set; }

Gets or sets the SerializationBinder used by the serializer when resolving type names.

public virtual ConstructorHandling ConstructorHandling { get; set; }

Gets or sets how constructors are used during deserialization.

public virtual StreamingContext Context { get; set; }

Gets or sets the StreamingContext used by the serializer when invoking serialization callback methods.

public virtual IContractResolver ContractResolver { get; set; }

Gets or sets the contract resolver used by the serializer when serializing .NET objects to JSON and vice versa.

public virtual JsonConverterCollection Converters { get; }

Gets a collection JsonConverter that will be used during serialization.

public virtual DefaultValueHandling DefaultValueHandling { get; set; }

Get or set how null default are handled during serialization and deserialization.

public virtual MissingMemberHandling MissingMemberHandling { get; set; }

Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.

public virtual NullValueHandling NullValueHandling { get; set; }

Get or set how null values are handled during serialization and deserialization.

public virtual ObjectCreationHandling ObjectCreationHandling { get; set; }

Gets or sets how objects are created during deserialization.

Gets or sets how object references are preserved by the serializer.

public virtual ReferenceLoopHandling ReferenceLoopHandling { get; set; }

Get or set how reference loops (e.g. a class referencing itself) is handled.

public virtual IReferenceResolver ReferenceResolver { get; set; }

Gets or sets the IReferenceResolver used by the serializer when resolving references.

public virtual FormatterAssemblyStyle TypeNameAssemblyFormat { get; set; }

Gets or sets how a type name assembly is written and resolved by the serializer.

public virtual TypeNameHandling TypeNameHandling { get; set; }

Gets or sets how type name writing and reading is handled by the serializer.

Occurs when the JsonSerializer errors during serialization and deserialization.

public JsonSerializer()

Initializes a new instance of the JsonSerializer class.

Creates a new JsonSerializer instance using the specified JsonSerializerSettings.

public object Deserialize(JsonReader reader)

Deserializes the Json structure contained by the specified JsonReader.

public object Deserialize(TextReader reader, Type objectType)

Deserializes the Json structure contained by the specified StringReader into an instance of the specified type.

public T Deserialize<T>(JsonReader reader)

Deserializes the Json structure contained by the specified JsonReader into an instance of the specified type.

public object Deserialize(JsonReader reader, Type objectType)

Deserializes the Json structure contained by the specified JsonReader into an instance of the specified type.

public void Populate(TextReader reader, object target)

Populates the JSON values onto the target object.

public void Populate(JsonReader reader, object target)

Populates the JSON values onto the target object.

public void Serialize(TextWriter textWriter, object value)

Serializes the specified Object and writes the Json structure to a Stream using the specified TextWriter.

public void Serialize(JsonWriter jsonWriter, object value)

Serializes the specified Object and writes the Json structure to a Stream using the specified JsonWriter.