8 references to Utf8JsonReader
Microsoft.AspNetCore.Http.Connections.Common (1)
NegotiateProtocol.cs (1)
150
var reader = new
Utf8JsonReader
(content, isFinalBlock: true, state: default);
Microsoft.Extensions.DependencyModel (1)
DependencyContextJsonReader.cs (1)
29
return Read(new
Utf8JsonReader
(buffer, isFinalBlock: true, state: default));
System.Text.Json (6)
System\Text\Json\Document\JsonDocument.cs (1)
957
Utf8JsonReader reader = new
Utf8JsonReader
(
System\Text\Json\Reader\Utf8JsonReader.cs (1)
266
:
this
(jsonData, isFinalBlock: true, new JsonReaderState(options))
System\Text\Json\Serialization\Converters\Object\ObjectWithParameterizedConstructorConverter.cs (1)
85
? new
Utf8JsonReader
(
System\Text\Json\Serialization\JsonSerializer.Read.Span.cs (2)
155
var reader = new
Utf8JsonReader
(utf8Json, isFinalBlock: true, readerState);
172
var reader = new
Utf8JsonReader
(utf8Json, isFinalBlock: true, readerState);
System\Text\Json\Serialization\Metadata\JsonTypeInfoOfT.ReadHelper.cs (1)
117
var reader = new
Utf8JsonReader
(bufferState.Bytes, bufferState.IsFinalBlock, jsonReaderState);