Newtonsoft.Json 两个Attribute含义
1、[JsonIgnore]
看名字就知道了,通过这个Attribute可以忽略序列化某个实体类字段
2、[JsonProperty("Font")]
设置序列化到json中的实际名称。
示例:
[Browsable(true)] [XmlIgnore()] [JsonIgnore] public Font TextFont { get => textFont; set => textFont = value; } [Browsable(false)] [XmlElement("Font")] [JsonProperty("Font")] public SerialHelper.XmlFont XmlFontObject { get { return SerialHelper.SerializeFont(TextFont); } set { TextFont = SerialHelper.DeserializeFont(value); } }
本博客是个人工作中记录,更深层次的问题可以提供有偿技术支持。
另外建了几个QQ技术群:
2、全栈技术群:616945527
2、硬件嵌入式开发: 75764412
3、Go语言交流群:9924600
闲置域名WWW.EXAI.CN (超级人工智能)出售。
另外建了几个QQ技术群:
2、全栈技术群:616945527
2、硬件嵌入式开发: 75764412
3、Go语言交流群:9924600
闲置域名WWW.EXAI.CN (超级人工智能)出售。