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. 1266if (typeof(IJsonOnDeserializing).IsAssignableFrom(Type)) 1268OnDeserializing = static obj => ((IJsonOnDeserializing)obj).OnDeserializing();