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