Share via


JsonCollectionOfNullableStructsReaderWriter<TConcreteCollection,TElement> Class

Definition

A JsonValueReaderWriter<TValue> for collections of primitives nullable value types.

public class JsonCollectionOfNullableStructsReaderWriter<TConcreteCollection,TElement> : Microsoft.EntityFrameworkCore.Storage.Json.JsonValueReaderWriter<System.Collections.Generic.IEnumerable<TElement?>>, Microsoft.EntityFrameworkCore.Storage.Internal.ICompositeJsonValueReaderWriter where TElement : struct
type JsonCollectionOfNullableStructsReaderWriter<'ConcreteCollection, 'Element (requires 'Element : struct)> = class
    inherit JsonValueReaderWriter<seq<Nullable<'Element>>>
    interface ICompositeJsonValueReaderWriter
Public Class JsonCollectionOfNullableStructsReaderWriter(Of TConcreteCollection, TElement)
Inherits JsonValueReaderWriter(Of IEnumerable(Of Nullable(Of TElement)))
Implements ICompositeJsonValueReaderWriter

Type Parameters

TConcreteCollection

The collection type to create an index of, if needed.

TElement

The element type.

Inheritance
JsonCollectionOfNullableStructsReaderWriter<TConcreteCollection,TElement>
Implements
Microsoft.EntityFrameworkCore.Storage.Internal.ICompositeJsonValueReaderWriter

Constructors

JsonCollectionOfNullableStructsReaderWriter<TConcreteCollection,TElement>(JsonValueReaderWriter<TElement>)

Creates a new instance of this collection reader/writer, using the given reader/writer for its elements.

Properties

ConstructorExpression

The expression representing construction of this object.

ValueType

The type of the value being read/written.

(Inherited from JsonValueReaderWriter<TValue>)

Methods

FromJson(Utf8JsonReaderManager, Object)

Reads the value from a UTF8 JSON stream or buffer.

(Inherited from JsonValueReaderWriter<TValue>)
FromJsonString(String, Object)

Reads the value from JSON in a string.

(Inherited from JsonValueReaderWriter)
FromJsonTyped(Utf8JsonReaderManager, Object)

Reads the value from JSON.

ToJson(Utf8JsonWriter, Object)

Writes the value to JSON.

(Inherited from JsonValueReaderWriter<TValue>)
ToJsonString(Object)

Writes the value to a JSON string.

(Inherited from JsonValueReaderWriter)
ToJsonTyped(Utf8JsonWriter, IEnumerable<Nullable<TElement>>) System.Object.ToJsonTyped(System.Text.Json.Utf8JsonWriter,System.Collections.Generic.IEnumerable{System.Nullable{`1}})
ToJsonTyped(Utf8JsonWriter, TValue)

Writes the value to JSON.

(Inherited from JsonValueReaderWriter<TValue>)

Explicit Interface Implementations

ICompositeJsonValueReaderWriter.InnerReaderWriter

Applies to