使用Json.net进行序列化时,如何更改属性名称?
我在C#DataSet对象中有一些数据。我现在可以使用像这样的Json.net转换器序列化它
DataSet data = new DataSet();// do some work here to populate 'data'
string output = JsonConvert.SerializeObject(data);
但是,这将使用data
打印到.json文件时的属性名称。我想将属性名称更改为其他名称(例如,将“ foo”更改为“ bar”)。
在Json.net文档中的
“对JSON进行序列化和反序列化”→“序列化属性”下,其显示为“ JsonPropertyAttribute …允许自定义名称”。但是没有例子。
(直接链接到文档)
Json.net的文档似乎很少。如果您有一个很好的例子,我将尝试将其添加到官方文档中。谢谢!
回答:
您可以用[JsonProperty]
允许您指定其他名称的属性来修饰希望控制其名称的属性:
using Newtonsoft.Json;// ...
[JsonProperty(PropertyName = "FooBar")]
public string Foo { get; set; }
文档:
以上是 使用Json.net进行序列化时,如何更改属性名称? 的全部内容, 来源链接: utcz.com/qa/405427.html