Web API Edition | ComponentOne
C1.Web.Api.Excel Namespace / CamelStringEnumConverter Class / ReadJson Method
The Newtonsoft.Json.JsonReader to read from.
Type of the object.
The existing value of object being read.
The calling serializer.

In This Topic
    ReadJson Method (CamelStringEnumConverter)
    In This Topic
    Reads the JSON representation of the object.
    Syntax
    'Declaration
     
    
    Public Overrides Function ReadJson( _
       ByVal reader As Newtonsoft.Json.JsonReader, _
       ByVal objectType As Type, _
       ByVal existingValue As Object, _
       ByVal serializer As Newtonsoft.Json.JsonSerializer _
    ) As Object
    public override object ReadJson( 
       Newtonsoft.Json.JsonReader reader,
       Type objectType,
       object existingValue,
       Newtonsoft.Json.JsonSerializer serializer
    )

    Parameters

    reader
    The Newtonsoft.Json.JsonReader to read from.
    objectType
    Type of the object.
    existingValue
    The existing value of object being read.
    serializer
    The calling serializer.

    Return Value

    The object value.
    See Also