Compartir a través de


JsonBoolReaderWriter Class

Definition

Reads and writes JSON for bool values.

[System.Runtime.CompilerServices.Nullable(0)]
public sealed class JsonBoolReaderWriter : Microsoft.EntityFrameworkCore.Storage.Json.JsonValueReaderWriter<bool>
[<System.Runtime.CompilerServices.Nullable(0)>]
type JsonBoolReaderWriter = class
    inherit JsonValueReaderWriter<bool>
Public NotInheritable Class JsonBoolReaderWriter
Inherits JsonValueReaderWriter(Of Boolean)
Inheritance
Attributes

Constructors

Name Description
JsonBoolReaderWriter()

Properties

Name Description
ConstructorExpression

The expression representing construction of this object.

Instance

The singleton instance of this stateless reader/writer.

ValueType

The type of the value being read/written.

(Inherited from JsonValueReaderWriter<TValue>)

Methods

Name Description
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>)
ToJsonObjectString(String, Object)

Returns a string containg a JSON object whith the specified property and value.

(Inherited from JsonValueReaderWriter)
ToJsonString(Object)

Writes the value to a JSON string.

(Inherited from JsonValueReaderWriter)
ToJsonTyped(Utf8JsonWriter, Boolean)

Writes the value to JSON.

ToJsonTyped(Utf8JsonWriter, TValue)

Writes the value to JSON.

(Inherited from JsonValueReaderWriter<TValue>)

Applies to