3 writes to WriteIndented
Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests (1)
ServerStreamingServerCallHandlerTests.cs (1)
344
var jsonSettings = jsonTranscodingOptions?.JsonSettings ?? new GrpcJsonSettings() {
WriteIndented
= false };
Microsoft.AspNetCore.Grpc.Microbenchmarks (2)
Json\JsonReading.cs (1)
28
_serializerOptions = JsonConverterHelper.CreateSerializerOptions(new JsonContext(new GrpcJsonSettings {
WriteIndented
= false }, TypeRegistry.Empty, descriptorRegistry));
Json\JsonWriting.cs (1)
29
new JsonContext(new GrpcJsonSettings {
WriteIndented
= false }, TypeRegistry.Empty, descriptorRegistry));
1 reference to WriteIndented
Microsoft.AspNetCore.Grpc.JsonTranscoding (1)
Internal\Json\JsonConverterHelper.cs (1)
38
var writeIndented = !isStreamingOptions ? context.Settings.
WriteIndented
: false;