5 references to JsonSerializerOptions
Microsoft.AspNetCore.Grpc.Swagger (1)
GrpcSwaggerServiceExtensions.cs (1)
50
var serializerOptions = s.GetService<IOptions<JsonOptions>>()?.Value?.
JsonSerializerOptions
?? new JsonSerializerOptions();
Microsoft.AspNetCore.Mvc.Core (3)
Formatters\SystemTextJsonInputFormatter.cs (1)
28
SerializerOptions = options.
JsonSerializerOptions
;
Formatters\SystemTextJsonOutputFormatter.cs (1)
37
var jsonSerializerOptions = jsonOptions.
JsonSerializerOptions
;
Infrastructure\SystemTextJsonResultExecutor.cs (1)
114
return _options.
JsonSerializerOptions
;
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Rendering\SystemTextJsonHelper.cs (1)
17
_htmlSafeJsonSerializerOptions = GetHtmlSafeSerializerOptions(options.Value.
JsonSerializerOptions
);