ArrayExpressionConverter<T> Class

Definition

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

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

Type Parameters

T

The type of the items of the array.

Inheritance
Newtonsoft.Json.JsonConverter<ArrayExpression<T>>
ArrayExpressionConverter<T>

Constructors

ArrayExpressionConverter<T>()

Properties

CanRead

Gets a value indicating whether this Converter can read JSON.

Methods

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

Reads the JSON representation of the object.

WriteJson(JsonWriter, ArrayExpression<T>, JsonSerializer)

Writes the JSON representation of the object.

Applies to