Reads the JSON representation of the object.
Namespace: Newtonsoft.JsonAssembly: Newtonsoft.Json (in Newtonsoft.Json.dll) Version: 4.5.0.0 (4.5.11.15729)
Syntax
| C# |
|---|
public abstract Object ReadJson( JsonReader reader, Type objectType, Object existingValue, JsonSerializer serializer ) |
| Visual Basic |
|---|
Public MustOverride Function ReadJson ( _ reader As JsonReader, _ objectType As Type, _ existingValue As Object, _ serializer As JsonSerializer _ ) As Object |
| Visual C++ |
|---|
public: virtual Object^ ReadJson( JsonReader^ reader, Type^ objectType, Object^ existingValue, JsonSerializer^ serializer ) abstract |
Parameters
- reader
- Type: Newtonsoft.Json..::..JsonReader
The JsonReader to read from.
- objectType
- Type: System..::..Type
Type of the object.
- existingValue
- Type: System..::..Object
The existing value of object being read.
- serializer
- Type: Newtonsoft.Json..::..JsonSerializer
The calling serializer.