15 references to Utf8JsonWriter
JwtBearerSample (1)
Startup.cs (1)
98using var writer = new Utf8JsonWriter(output);
Microsoft.AspNetCore.Http.Connections.Common (1)
src\SignalR\common\Shared\ReusableUtf8JsonWriter.cs (1)
24_writer = new Utf8JsonWriter(stream, new JsonWriterOptions()
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Infrastructure\DefaultTempDataSerializer.cs (1)
137using var writer = new Utf8JsonWriter(bufferWriter);
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\KestrelEventSource.cs (1)
237var writer = new Utf8JsonWriter(bufferWriter);
Microsoft.AspNetCore.SignalR.Common (1)
src\SignalR\common\Shared\ReusableUtf8JsonWriter.cs (1)
24_writer = new Utf8JsonWriter(stream, new JsonWriterOptions()
Microsoft.AspNetCore.SignalR.Protocols.Json (1)
src\SignalR\common\Shared\ReusableUtf8JsonWriter.cs (1)
24_writer = new Utf8JsonWriter(stream, new JsonWriterOptions()
Microsoft.Extensions.Caching.Hybrid (1)
Internal\DefaultJsonSerializerFactory.cs (1)
33using var writer = new Utf8JsonWriter(target);
Microsoft.Extensions.Logging.Console (1)
JsonConsoleFormatter.cs (1)
63using (var writer = new Utf8JsonWriter(output, FormatterOptions.JsonWriterOptions))
SignalRSamples (1)
Startup.cs (1)
55await using (var writer = new Utf8JsonWriter(context.Response.BodyWriter, _jsonWriterOptions))
System.Text.Json (6)
System\Text\Json\Serialization\JsonSerializer.Read.Node.cs (2)
160using (var writer = new Utf8JsonWriter(output, options.GetWriterOptions())) 181using (var writer = new Utf8JsonWriter(output, options.GetWriterOptions()))
System\Text\Json\Serialization\Metadata\JsonTypeInfoOfT.WriteHelpers.cs (2)
161var writer = new Utf8JsonWriter(pipeWriter, Options.GetWriterOptions()); 302using var writer = new Utf8JsonWriter(bufferWriter, Options.GetWriterOptions());
System\Text\Json\Writer\Utf8JsonWriterCache.cs (2)
38writer = new Utf8JsonWriter(bufferWriter, options); 58writer = new Utf8JsonWriter(bufferWriter, options.GetWriterOptions());