Share via


ExpressionPropertyConverter<T>.ReadJson Method

Definition

Reads the JSON representation of the object.

public override AdaptiveExpressions.Properties.ExpressionProperty<T> ReadJson (Newtonsoft.Json.JsonReader reader, Type objectType, AdaptiveExpressions.Properties.ExpressionProperty<T> existingValue, bool hasExistingValue, Newtonsoft.Json.JsonSerializer serializer);
override this.ReadJson : Newtonsoft.Json.JsonReader * Type * AdaptiveExpressions.Properties.ExpressionProperty<'T> * bool * Newtonsoft.Json.JsonSerializer -> AdaptiveExpressions.Properties.ExpressionProperty<'T>
Public Overrides Function ReadJson (reader As JsonReader, objectType As Type, existingValue As ExpressionProperty(Of T), hasExistingValue As Boolean, serializer As JsonSerializer) As ExpressionProperty(Of T)

Parameters

reader
Newtonsoft.Json.JsonReader

The Newtonsoft.Json.JsonReader to read from.

objectType
Type

Type of the object.

existingValue
ExpressionProperty<T>

The existing value of object being read.

hasExistingValue
Boolean

A boolean value indicating whether there is an existing value of object to be read.

serializer
Newtonsoft.Json.JsonSerializer

The calling serializer.

Returns

An ExpressionProperty instance.

Applies to