引自http://www.servicestack.net/docs/framework/release-notes
你可能不需要做太多:)
JSON 和 JSV 文本序列化程序现在支持对具有接口/抽象或对象类型的 DTO 进行序列化和反序列化。除其他外,这允许您拥有一个 IInterface 属性,该属性在序列化时将在 __type 属性字段中包含其具体类型信息(类似于其他 JSON 序列化程序),当序列化时填充该具体类型的实例(如果它存在)。
[...]
注意:此功能会自动添加到所有 Abstract/Interface/Object 类型,即您无需包含任何 [KnownType] 属性即可利用它。
不多:
public interface IAsset
{
string Bling { get; set; }
}
public class AAsset : IAsset
{
public string Bling { get; set; }
public override string ToString()
{
return "A" + Bling;
}
}
public class BAsset : IAsset
{
public string Bling { get; set; }
public override string ToString()
{
return "B" + Bling;
}
}
public class AssetBag
{
[JsonProperty(TypeNameHandling = TypeNameHandling.None)]
public List<IAsset> Assets { get; set; }
}
class Program
{
static void Main(string[] args)
{
try
{
var bag = new AssetBag
{
Assets = new List<IAsset> {new AAsset {Bling = "Oho"}, new BAsset() {Bling = "Aha"}}
};
string json = JsonConvert.SerializeObject(bag, new JsonSerializerSettings()
{
TypeNameHandling = TypeNameHandling.Auto
});
var anotherBag = JsonConvert.DeserializeObject<AssetBag>(json, new JsonSerializerSettings()
{
TypeNameHandling = TypeNameHandling.Auto
});