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>
26
public 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>
61
public static
MvcNewtonsoftJsonOptions
UseMemberCasing(this
MvcNewtonsoftJsonOptions
options)
DependencyInjection\NewtonsoftJsonMvcBuilderExtensions.cs (2)
30
/// <param name="setupAction">Callback to configure <see cref="
MvcNewtonsoftJsonOptions
"/>.</param>
34
Action<
MvcNewtonsoftJsonOptions
> setupAction)
DependencyInjection\NewtonsoftJsonMvcCoreBuilderExtensions.cs (2)
39
/// <param name="setupAction">Callback to configure <see cref="
MvcNewtonsoftJsonOptions
"/>.</param>
43
Action<
MvcNewtonsoftJsonOptions
> setupAction)
DependencyInjection\NewtonsoftJsonMvcOptionsSetup.cs (2)
23
private readonly
MvcNewtonsoftJsonOptions
_jsonOptions;
29
IOptions<
MvcNewtonsoftJsonOptions
> jsonOptions,
NewtonsoftJsonHelper.cs (2)
25
/// <param name="options">The <see cref="
MvcNewtonsoftJsonOptions
"/>.</param>
30
public NewtonsoftJsonHelper(IOptions<
MvcNewtonsoftJsonOptions
> options, ArrayPool<char> charPool)
NewtonsoftJsonInputFormatter.cs (4)
26
private readonly
MvcNewtonsoftJsonOptions
_jsonOptions;
36
/// (<see cref="
MvcNewtonsoftJsonOptions
.SerializerSettings"/>) or an instance
42
/// <param name="jsonOptions">The <see cref="
MvcNewtonsoftJsonOptions
"/>.</param>
49
MvcNewtonsoftJsonOptions
jsonOptions)
NewtonsoftJsonOutputFormatter.cs (6)
22
private
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>
59
MvcNewtonsoftJsonOptions
? 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>
38
MvcNewtonsoftJsonOptions
jsonOptions)
NewtonsoftJsonResultExecutor.cs (3)
30
private readonly
MvcNewtonsoftJsonOptions
_jsonOptions;
40
/// <param name="jsonOptions">Accessor to <see cref="
MvcNewtonsoftJsonOptions
"/>.</param>
46
IOptions<
MvcNewtonsoftJsonOptions
> jsonOptions,