如题,比如我有一个类,有A,B,C三个属性,我要根据登录用户来序列化这个类并返回接口。
可能用户1 返回的是 A,B,用户2返回的是B,C属性 。
参考 Example: Conditional Serialization
You can use the JsonPropertyInfo.ShouldSerialize delegate to determine dynamically whether a given property value should be serialized.
感谢大佬回答,正是这个意思。