8 references to Utf8JsonReader
Microsoft.AspNetCore.Http.Connections.Common (1)
NegotiateProtocol.cs (1)
150var reader = new Utf8JsonReader(content, isFinalBlock: true, state: default);
Microsoft.Extensions.DependencyModel (1)
DependencyContextJsonReader.cs (1)
29return Read(new Utf8JsonReader(buffer, isFinalBlock: true, state: default));
System.Text.Json (6)
System\Text\Json\Document\JsonDocument.cs (1)
957Utf8JsonReader 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)
155var reader = new Utf8JsonReader(utf8Json, isFinalBlock: true, readerState); 172var reader = new Utf8JsonReader(utf8Json, isFinalBlock: true, readerState);
System\Text\Json\Serialization\Metadata\JsonTypeInfoOfT.ReadHelper.cs (1)
117var reader = new Utf8JsonReader(bufferState.Bytes, bufferState.IsFinalBlock, jsonReaderState);