Click or drag to resize
Json.NET

DataTableConverterReadJson Method

 
Reads the JSON representation of the object.

Namespace:  Newtonsoft.Json.Converters
Assembly:  Newtonsoft.Json (in Newtonsoft.Json.dll) Version: 12.0.1+509643a8952ce731e0207710c429ad6e67dc43db
Syntax
C#
public override Object ReadJson(
	JsonReader reader,
	Type objectType,
	Object existingValue,
	JsonSerializer serializer
)

Parameters

reader
Type: Newtonsoft.JsonJsonReader
The JsonReader to read from.
objectType
Type: SystemType
Type of the object.
existingValue
Type: SystemObject
The existing value of object being read.
serializer
Type: Newtonsoft.JsonJsonSerializer
The calling serializer.

Return Value

Type: Object
The object value.
See Also