1 instantiation of JsonOptions
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\MvcCoreMvcOptionsSetup.cs (1)
30: this(readerFactory, NullLoggerFactory.Instance, Options.Create(new JsonOptions()))
15 references to JsonOptions
Microsoft.AspNetCore.Mvc.Core (14)
DependencyInjection\MvcCoreMvcBuilderExtensions.cs (3)
38/// Configures <see cref="JsonOptions"/> for the specified <paramref name="builder"/>. 42/// <param name="configure">An <see cref="Action"/> to configure the <see cref="JsonOptions"/>.</param> 46Action<JsonOptions> configure)
DependencyInjection\MvcCoreMvcCoreBuilderExtensions.cs (3)
40/// Configures <see cref="JsonOptions"/> for the specified <paramref name="builder"/>. 43/// <param name="configure">An <see cref="Action"/> to configure the <see cref="JsonOptions"/>.</param> 47Action<JsonOptions> configure)
Formatters\SystemTextJsonInputFormatter.cs (3)
15private readonly JsonOptions _jsonOptions; 22/// <param name="options">The <see cref="JsonOptions"/>.</param> 25JsonOptions options,
Formatters\SystemTextJsonOutputFormatter.cs (1)
35internal static SystemTextJsonOutputFormatter CreateFormatter(JsonOptions jsonOptions)
Infrastructure\MvcCoreMvcOptionsSetup.cs (2)
27private readonly IOptions<JsonOptions> _jsonOptions; 34public MvcCoreMvcOptionsSetup(IHttpRequestStreamReaderFactory readerFactory, ILoggerFactory loggerFactory, IOptions<JsonOptions> jsonOptions)
Infrastructure\SystemTextJsonResultExecutor.cs (2)
23private readonly JsonOptions _options; 27IOptions<JsonOptions> options,
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Rendering\SystemTextJsonHelper.cs (1)
15public SystemTextJsonHelper(IOptions<JsonOptions> options)