我想知道System.Text.Json中Newtonsoft.Json / Json.Net的JsonProperty
字段的等效值。
示例:
using Newtonsoft.Json;
public class Example
{
[JsonProperty("test2")]
public string Test { get; set; }
}
参考文献:
答案 0 :(得分:4)
以防万一,还有其他人对此感到失望。该属性已重命名为JsonPropertyName
,并且来自System.Text.Json.Serialization
nuget包中的System.Text.Json
。
示例:
using System.Text.Json.Serialization;
public class Example
{
[JsonPropertyName("test2")]
public string Test { get; set; }
}
参考文献: