JsonDecimalStringRead Method

Reads and converts the JSON to a nullable decimal.

Definition

Namespace: Common.Core.Converters
Assembly: Common.Core (in Common.Core.dll) Version: 2.1.5
C#
public override decimal? 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

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

See Also