3 references to IJsonOnDeserializing
System.Text.Json (3)
System\Text\Json\Serialization\Metadata\JsonTypeInfo.cs (3)
179
/// the value of this callback will be mapped from any <see cref="
IJsonOnDeserializing
"/> implementation on the type.
1266
if (typeof(
IJsonOnDeserializing
).IsAssignableFrom(Type))
1268
OnDeserializing = static obj => ((
IJsonOnDeserializing
)obj).OnDeserializing();