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. 1261if (typeof(IJsonOnSerialized).IsAssignableFrom(Type)) 1263OnSerialized = static obj => ((IJsonOnSerialized)obj).OnSerialized();