ASP.NET Core MVC Controls | ComponentOne
C1.AspNetCore.Mvc Assembly / C1.JsonNet Namespace / JsonConverter Class / ReadJson Method
The JsonReader to read from.
Type of the object.
The existing value of object being read.

In This Topic
    ReadJson Method (JsonConverter)
    In This Topic
    Reads the JSON representation of the object.
    Syntax
    'Declaration
     
    Protected Overridable Function ReadJson( _
       ByVal reader As JsonReader, _
       ByVal objectType As Type, _
       ByVal existedValue As Object _
    ) As Object
    protected virtual object ReadJson( 
       JsonReader reader,
       Type objectType,
       object existedValue
    )

    Parameters

    reader
    The JsonReader to read from.
    objectType
    Type of the object.
    existedValue
    The existing value of object being read.

    Return Value

    The object value after deserializing.
    See Also