我有一个返回的 ASP.NET MVC Web API 控制器public IEnumerable<IMessage> Get()
它抛出异常,我需要注册从IMessage传递给的已知类型集合中派生的类型DataContractSerializer。
如何注册“已知类型”以便在 MVC Web API 项目中使用DataContractSerializer和使用?DataContractJSONSerializer
KnownType 属性不能放在接口上。
我有一个返回的 ASP.NET MVC Web API 控制器public IEnumerable<IMessage> Get()
它抛出异常,我需要注册从IMessage传递给的已知类型集合中派生的类型DataContractSerializer。
如何注册“已知类型”以便在 MVC Web API 项目中使用DataContractSerializer和使用?DataContractJSONSerializer
KnownType 属性不能放在接口上。
你需要把KnownTypeAttribute你的IMessage实现:
public interface  IMessage
{
    string Content { get; }
}
[KnownType(typeof(Message))]
public class Message : IMessage {
    public string Content{ get; set; }
}
[KnownType(typeof(Message2))]
public class Message2 : IMessage
{
    public string Content { get; set; }
}
因此,当调用以下操作时:
 public IEnumerable<IMessage> Get()
 {
     return new IMessage[] { new Message { Content = "value1" }, 
                             new Message2 { Content = "value2" } };
 }
结果将是这样的:
<ArrayOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <anyType xmlns:d2p1="http://schemas.datacontract.org/2004/07/MvcApplication3.Controllers" i:type="d2p1:Message">
        <d2p1:Content>value1</d2p1:Content>
    </anyType>
    <anyType xmlns:d2p1="http://schemas.datacontract.org/2004/07/MvcApplication3.Controllers" i:type="d2p1:Message2">
       <d2p1:Content>value2</d2p1:Content>
    </anyType>
</ArrayOfanyType>
但这只会以一种“方式”起作用。因此,您不能回发相同的 XML。
为了以下操作应该起作用:
public string Post(IEnumerable<IMessage> messages)
您需要全局注册已知类型,DataContractSerializer并在GlobalConfiguration.Configuration.Formatters
GlobalConfiguration.Configuration
                   .Formatters
                   .XmlFormatter.SetSerializer<IEnumerable<IMessage>>(
                       new DataContractSerializer(typeof(IEnumerable<IMessage>), 
                           new[] { typeof(Message), typeof(Message2) }));
使用配置,您不需要KnownTypeAttribute实现类型。