MtBaseJsonConverterTReadParameter Method

Reads a parameter from the JSON reader and assigns the value to the property of item.

Definition

Namespace: MobileTrack.Common.Services.JsonConverters.BusinessObjects
Assembly: MobileTrack.Common (in MobileTrack.Common.dll) Version: 0.8+34f1bbd8dc6b32752cfce829cbed66e15113d7ba
protected abstract void ReadParameter(
	ref Utf8JsonReader reader,
	string propertyName,
	ref T item
)

Parameters

reader  Utf8JsonReader
JSON reader
propertyName  String
Name of the property we're reading
item  T
The item we're building up from JSON.

Exceptions

JsonExceptionThrown in some of the readers if a parameter pops up that is not part of object T

See Also