gpt4 book ai didi

c# - 使用 JSON.net 将枚举容器序列化为字符串

转载 作者:行者123 更新时间:2023-12-05 07:37:14 27 4
gpt4 key购买 nike

您可以通过添加属性将 WebAPI 模型中的枚举字段序列化为字符串:

enum Size
{
Small,
Medium,
Large
}

class Example1
{
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
Size Size { get; set; }
}

这将序列化为这个 JSON:

{
"Size": "Medium"
}

我怎样才能对枚举集合完成相同的操作?

class Example2
{
IList<Size> Sizes { get; set; }
}

我想序列化为这个 JSON:

{
"Sizes":
[
"Medium",
"Large"
]
}

最佳答案

您需要使用 JsonPropertyAttribute.ItemConverterType属性:

class Example2
{
[JsonProperty (ItemConverterType = typeof(StringEnumConverter))]
public IList<Size> Sizes { get; set; }
}

关于c# - 使用 JSON.net 将枚举容器序列化为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48771055/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com