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.
我有一个 asmx 服务,这些方法返回具有原始数据类型属性的自定义类。当这些属性为 null 时,它们会从服务返回的 xml 中排除。我希望服务仍然返回 xml 中的属性,但没有值。有没有办法做到这一点?
您可以使用XmlElement(IsNullable = true). 这将告诉序列化程序包含它们,即使它们为空。
XmlElement(IsNullable = true)