32 references to MvcNewtonsoftJsonOptions
Microsoft.AspNetCore.Mvc.NewtonsoftJson (32)
DependencyInjection\MvcNewtonsoftJsonOptionsExtensions.cs (8)
23/// <param name="options"><see cref="MvcNewtonsoftJsonOptions"/></param> 25/// <returns><see cref="MvcNewtonsoftJsonOptions"/> with camel case settings.</returns> 26public static MvcNewtonsoftJsonOptions UseCamelCasing(this MvcNewtonsoftJsonOptions options, bool processDictionaryKeys) 59/// <param name="options"><see cref="MvcNewtonsoftJsonOptions"/></param> 60/// <returns><see cref="MvcNewtonsoftJsonOptions"/> with member casing settings.</returns> 61public static MvcNewtonsoftJsonOptions UseMemberCasing(this MvcNewtonsoftJsonOptions options)
DependencyInjection\NewtonsoftJsonMvcBuilderExtensions.cs (2)
30/// <param name="setupAction">Callback to configure <see cref="MvcNewtonsoftJsonOptions"/>.</param> 34Action<MvcNewtonsoftJsonOptions> setupAction)
DependencyInjection\NewtonsoftJsonMvcCoreBuilderExtensions.cs (2)
39/// <param name="setupAction">Callback to configure <see cref="MvcNewtonsoftJsonOptions"/>.</param> 43Action<MvcNewtonsoftJsonOptions> setupAction)
DependencyInjection\NewtonsoftJsonMvcOptionsSetup.cs (2)
23private readonly MvcNewtonsoftJsonOptions _jsonOptions; 29IOptions<MvcNewtonsoftJsonOptions> jsonOptions,
NewtonsoftJsonHelper.cs (2)
25/// <param name="options">The <see cref="MvcNewtonsoftJsonOptions"/>.</param> 30public NewtonsoftJsonHelper(IOptions<MvcNewtonsoftJsonOptions> options, ArrayPool<char> charPool)
NewtonsoftJsonInputFormatter.cs (4)
26private readonly MvcNewtonsoftJsonOptions _jsonOptions; 36/// (<see cref="MvcNewtonsoftJsonOptions.SerializerSettings"/>) or an instance 42/// <param name="jsonOptions">The <see cref="MvcNewtonsoftJsonOptions"/>.</param> 49MvcNewtonsoftJsonOptions jsonOptions)
NewtonsoftJsonOutputFormatter.cs (6)
22private MvcNewtonsoftJsonOptions? _jsonOptions; 31/// (<see cref="MvcNewtonsoftJsonOptions.SerializerSettings"/>) or an instance 49/// (<see cref="MvcNewtonsoftJsonOptions.SerializerSettings"/>) or an instance 54/// <param name="jsonOptions">The <see cref="MvcNewtonsoftJsonOptions"/>.</param> 59MvcNewtonsoftJsonOptions? jsonOptions) 140_jsonOptions ??= context.HttpContext.RequestServices.GetRequiredService<IOptions<MvcNewtonsoftJsonOptions>>().Value;
NewtonsoftJsonPatchInputFormatter.cs (3)
25/// (<see cref="MvcNewtonsoftJsonOptions.SerializerSettings"/>) or an instance 31/// <param name="jsonOptions">The <see cref="MvcNewtonsoftJsonOptions"/>.</param> 38MvcNewtonsoftJsonOptions jsonOptions)
NewtonsoftJsonResultExecutor.cs (3)
30private readonly MvcNewtonsoftJsonOptions _jsonOptions; 40/// <param name="jsonOptions">Accessor to <see cref="MvcNewtonsoftJsonOptions"/>.</param> 46IOptions<MvcNewtonsoftJsonOptions> jsonOptions,