ObjectExpressionConverter<T> Class

Definition

Converter which allows json to be expression to object or static object.

public class ObjectExpressionConverter<T> : Newtonsoft.Json.JsonConverter<AdaptiveExpressions.Properties.ObjectExpression<T>>
type ObjectExpressionConverter<'T> = class
    inherit JsonConverter<ObjectExpression<'T>>
Public Class ObjectExpressionConverter(Of T)
Inherits JsonConverter(Of ObjectExpression(Of T))

Type Parameters

T

The property type to construct.

Inheritance
Newtonsoft.Json.JsonConverter<ObjectExpression<T>>
ObjectExpressionConverter<T>

Constructors

ObjectExpressionConverter<T>()

Properties

CanRead

Gets a value indicating whether this Converter can read JSON.

Methods

ReadJson(JsonReader, Type, ObjectExpression<T>, Boolean, JsonSerializer)

Reads the JSON representation of the object.

WriteJson(JsonWriter, ObjectExpression<T>, JsonSerializer)

Writes the JSON representation of the object.

Applies to