WebAPI:默认情况下不抑制空值 XML 序列化程序

WebAPI: Null values not suppressed by Default XML Serializer

我尝试使用 Whosebug 上其他文章中关于此问题的建议,但没有成功。我无法从 Xml 序列化中抑制我的空属性。

这是我的相当简单的 class。如您所见,我正在尝试使用声明性属性以及 ShouldSerialize{variable} 技术,但这些都无法有效地从 Xml.

中抑制它们
public class Practice
{
#pragma warning disable 0649
    public int id;
    public string name;
    public string sharedId;
    public string sharedIdType;
    
    [XmlElement(IsNullable = false)]
    public List<Doctor> doctors;

    [XmlElement(IsNullable = false)]
    public List<Employee> employees;

    public bool ShouldSerializedoctors()
    {
        return !(doctors == null);
    }

    public bool ShouldSerializeemployees()
    {
        return !(employees == null);
    }
#pragma warning restore 0649
}

这是结果 Xml 中的一个片段。如您所见,doctors 被序列化到 Xml 中,即使它是 null。这是 Framework 4.5.2 上的 WebAPI 项目 运行。知道我做错了什么吗?

<ArrayOfPractice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/rater8.Common.Models">
   <Practice>
       <doctors i:nil="true"/>
       <employees>
           <Employee>
              <id>49</id>

顺便说一句 - 我能够使用以下方法从 Json 序列化中抑制空值:

config.Formatters.JsonFormatter.SerializerSettings =
    new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore };

这里有一些附加信息:

通过将以下语句添加到 WebApiCofig.Register 我现在看到了对 nil 元素的抑制。

config.Formatters.XmlFormatter.UseXmlSerializer = true;

这里是这个方法的完整代码:

public static class WebApiConfig
{
    public static void Register(HttpConfiguration config)
    {
        // Web API configuration and services

        // Web API routes
        config.MapHttpAttributeRoutes();

        config.Routes.MapHttpRoute(
            name: "DefaultApi",
            routeTemplate: "api/{controller}/{id}",
            defaults: new { id = RouteParameter.Optional }
        );

        config.Formatters.JsonFormatter.SerializerSettings =
             new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore };

        config.Formatters.XmlFormatter.UseXmlSerializer = true;

        GlobalConfiguration.Configuration.Formatters.JsonFormatter.MediaTypeMappings.Add
            (new QueryStringMapping("format", "json", "application/json"));
        GlobalConfiguration.Configuration.Formatters.XmlFormatter.MediaTypeMappings.Add
            (new QueryStringMapping("format", "xml", "application/xml"));
    }
}

所以这解决了最初的问题描述,但这引发了一些额外的问题。

  1. 什么是默认 WebAPI Xml 序列化程序,而不是 Xml序列化程序?

  2. 我注意到 XmlSerializer 发出的 Xml 的结构与默认发出的结构不同(除了省略了 nil 元素) WebAPI 序列化器。这会导致在接收端尝试将 Xml 反序列化为其 class 表示时出现问题吗?

此声明性标记 - [XmlElement(IsNullable = false)] - 被 XmlSerializer 接受,但被 DataContractSerializer 忽略。如果要使用此标记,则需要显式 select XmlSerializer。如下:

public static class WebApiConfig
{
   public static void Register(HttpConfiguration config)
   {
       // Web API configuration and services

       ...

       config.Formatters.XmlFormatter.UseXmlSerializer = true;

       ...

   }
}

加入class

[Serializable]
[DataContract(IsReference = true)]

添加字段

[DataMember]

并添加配置

config.Formatters.XmlFormatter.UseXmlSerializer = true;

并删除

[XmlElement(IsNullable = false)] 

在字段中