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