Selectively use default JSON converter(有选择地使用默认 JSON 转换器)
问题描述
我在我的 Web API 项目的 Startup.cs
中使用以下内容将枚举 JSON 序列化为字符串:
I use the following in my Web API project's Startup.cs
to JSON-serialize Enums into strings:
// Configure JSON Serialization
var jsonSerializationSettings = GlobalConfiguration.Configuration.Formatters.JsonFormatter.SerializerSettings;
jsonSerializationSettings.Formatting = Newtonsoft.Json.Formatting.None;
jsonSerializationSettings.Converters.Add(new Newtonsoft.Json.Converters.StringEnumConverter());
这是为了避免使用 [JsonConverter(typeof(StringEnumConverter))]
现在,我如何有选择地退出某些 Enum 属性的全局序列化设置并使用转换为整数的默认序列化程序?
Now, how can I selectively opt out of my global serialization setting for some Enum properties and use the default serializer that converts to integers?
推荐答案
您可以将虚拟转换器添加到有问题的属性中,但不执行任何操作:
You could add a dummy converter to the properties in question that does nothing:
public class NoConverter : JsonConverter
{
public override bool CanConvert(Type objectType)
{
// Note - not called when attached directly via [JsonConverter(typeof(NoConverter))]
throw new NotImplementedException();
}
public override bool CanRead { get { return false; } }
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
{
throw new NotImplementedException();
}
public override bool CanWrite { get { return false; } }
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
{
throw new NotImplementedException();
}
}
然后使用 [JsonConverter(typeof(NoConverter))]
.这样做后,JsonConverter
属性的转换器取代了全局指定的转换器,但由于 CanRead
和 CanWrite
都返回 false,因此不执行任何转换.对于枚举集合,您可以使用 [JsonProperty(ItemConverterType = typeof(NoConverter))]
.
Then attach it to the property using [JsonConverter(typeof(NoConverter))]
. Having done so, the JsonConverter
attribute's converter supersedes the globally specified converter, but since CanRead
and CanWrite
both return false no conversion is performed. For collections of enums, you could use [JsonProperty(ItemConverterType = typeof(NoConverter))]
.
例如,如果您定义类型:
For instance, if you define the types:
public enum Foo { A, B, C }
public class RootObject
{
[JsonConverter(typeof(NoConverter))]
public Foo FooAsInteger { get; set; }
public Foo FooAsString { get; set; }
}
然后
var root = new RootObject { FooAsInteger = Foo.B, FooAsString = Foo.B };
var json = JsonConvert.SerializeObject(root, Formatting.Indented, new StringEnumConverter());
Console.WriteLine(json);
产生输出
{
"FooAsInteger": 1,
"FooAsString": "B"
}
请注意,如果您希望所有数据模型中所有出现的枚举都序列化为整数,也可以将 NoConverter
直接应用于枚举:
Note that you can also apply NoConverter
directly to the enum, if you want all occurrences of the enum in all data models to be serialized as an integer:
[JsonConverter(typeof(NoConverter))]
public enum FooAlwaysAsInteger { A, B, C }
示例 fiddle.
这篇关于有选择地使用默认 JSON 转换器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:有选择地使用默认 JSON 转换器
基础教程推荐
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- rabbitmq 的 REST API 2022-01-01