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

In This Topic
    ReadJson Method (StreamConverter)
    In This Topic
    Reads the JSON representation of the object.
    Syntax
    'Declaration
     
    Protected Overrides Function ReadJson( _
       ByVal reader As JsonReader, _
       ByVal objectType As Type, _
       ByVal existingValue As Object _
    ) As Object
    protected override object ReadJson( 
       JsonReader reader,
       Type objectType,
       object existingValue
    )

    Parameters

    reader
    The C1.JsonNet.JsonReader to read from.
    objectType
    Type of the object.
    existingValue
    The existing value of object being read.

    Return Value

    The object value after deserializing.
    See Also