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