1 write to AllowMultipleValues
System.Text.Json (1)
System\Text\Json\Serialization\JsonSerializer.Read.Stream.cs (1)
539readerOptions.AllowMultipleValues = true;
10 references to AllowMultipleValues
System.Text.Json (10)
System\Text\Json\Reader\Utf8JsonReader.cs (5)
57internal readonly bool AllowMultipleValues => _readerOptions.AllowMultipleValues; 284if (_isFinalBlock && TokenType is JsonTokenType.None && !_readerOptions.AllowMultipleValues) 1747if (_readerOptions.AllowMultipleValues) 1874if (_readerOptions.AllowMultipleValues) 2217if (_readerOptions.AllowMultipleValues)
System\Text\Json\Reader\Utf8JsonReader.MultiSegment.cs (3)
1579if (_readerOptions.AllowMultipleValues) 1715if (_readerOptions.AllowMultipleValues) 2073if (_readerOptions.AllowMultipleValues)
System\Text\Json\Serialization\JsonSerializer.Read.Span.cs (2)
163Debug.Assert(reader.BytesConsumed == (actualByteCount ?? utf8Json.Length) || reader.CurrentState.Options.AllowMultipleValues); 180Debug.Assert(reader.BytesConsumed == (actualByteCount ?? utf8Json.Length) || reader.CurrentState.Options.AllowMultipleValues);