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