System\Text\Json\Serialization\Converters\Collection\JsonCollectionConverter.cs (2)
114elementConverter.TryRead(ref reader, typeof(TElement), options, ref state, out TElement? element, out _);
228if (!elementConverter.TryRead(ref reader, typeof(TElement), options, ref state, out TElement? element, out _))
System\Text\Json\Serialization\Converters\Collection\JsonDictionaryConverter.cs (2)
147_valueConverter.TryRead(ref reader, ElementType, options, ref state, out TValue? element, out _);
293bool success = _valueConverter.TryRead(ref reader, typeof(TValue), options, ref state, out TValue? element, out _);
System\Text\Json\Serialization\Metadata\JsonPropertyInfoOfT.cs (2)
337success = EffectiveConverter.TryRead(ref reader, PropertyType, Options, ref state, out T? value, out bool populatedValue);
392success = EffectiveConverter.TryRead(ref reader, PropertyType, Options, ref state, out T? typedValue, out _);