JsonIntegerStringRead Method

Reads and converts the JSON to a nullable integer.

Definition

Namespace: Common.Core.Converters
Assembly: Common.Core (in Common.Core.dll) Version: 2.1.5
C#
public override int? Read(
	ref Utf8JsonReader reader,
	Type typeToConvert,
	JsonSerializerOptions options
)

Parameters

reader  Utf8JsonReader
The reader.
typeToConvert  Type
The type to convert.
options  JsonSerializerOptions
An object that specifies serialization options to use.

Return Value

NullableInt32
The converted value or if the value could not be converted.

See Also