MvcNewtonsoftJsonOptionsExtensions.UseCamelCasing 方法

定义

配置 JSON 序列化的大小写行为,以将 camel 大小写用于属性名称,并选择性地用于动态类型和字典键。

public static Microsoft.AspNetCore.Mvc.MvcNewtonsoftJsonOptions UseCamelCasing (this Microsoft.AspNetCore.Mvc.MvcNewtonsoftJsonOptions options, bool processDictionaryKeys);
static member UseCamelCasing : Microsoft.AspNetCore.Mvc.MvcNewtonsoftJsonOptions * bool -> Microsoft.AspNetCore.Mvc.MvcNewtonsoftJsonOptions
<Extension()>
Public Function UseCamelCasing (options As MvcNewtonsoftJsonOptions, processDictionaryKeys As Boolean) As MvcNewtonsoftJsonOptions

参数

processDictionaryKeys
Boolean

如果为 true,则会将动态对象的字典键和属性大小写。

返回

MvcNewtonsoftJsonOptions 与驼峰大小写设置。

注解

此方法修改 Newtonsoft.Json.JsonSerializerSettings.ContractResolver

适用于