Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有一个从 WebApi 返回的对象,是否可以将其中一个属性标记为 hidden ?
您可以使用:
[JsonIgnore] [XmlIgnore]
这些将从这两种序列化中隐藏您的财产。我一直试图将两者混合在一个类中,但JSonIgnoreAtrribute它是一个密封类,并没有给我们留下无缝集成选项。
JSonIgnoreAtrribute
因此,直接的方法是在您的可忽略属性上添加这两个属性。