码迷,mamicode.com
首页 > 其他好文 > 详细

Reprint: Serialization

时间:2015-03-18 10:25:54      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:

Having just recently ran into some major serialization issues I’m going to list some of the errors and pitfalls that I ran into.

Some of the errors encountered

Error one
“<ClassName> is inaccessible due to its protection level. Only public types can be processed.”

It means that the Class you are trying to serialize is not marked as public and hence the serializor can not access it. Depending on the Class scope this may not be a problem e.g. the serialization code and the class are both in the same scope.

Error Two
“Cannot serialize member <Property Name> of type <Type> because it is an interface.”

It means that one of the members in your class is defined as an interface. An interface can never be serialized since the serializor will not know which instance of the interface to use.

Error Three
The type <Type> was not expected. Use the XmlInclude or SoapInclude attribute to specify types that are not known statically.

This error is caused when trying to serialize an inherited class

E.g. the following example will cause this problem

  1. public class Test  
  2. {  
  3.   private string _Field = "";  
  4.   public string Field  
  5.   {  
  6.     get { return _Field; }  
  7.     set { _Field = value; }  
  8.   }  
  9. }  
  10.   
  11. public class TestInherited : Test  
  12. {  
  13. }  
  14.   
  15. public class Container  
  16. {  
  17.   private Test ivField;  
  18.   public Test Field  
  19.   {  
  20.     get { return _Field; }  
  21.     set { _Field = value; }  
  22.   }  
  23. }  
  24.   
  25. Container _Test = new Container();  
  26. _Test.Field = new TestInherited();  

The issue is that the Container.Field is defined as Test but instantiated as TestInherited. Their are two solutions for this problem
1) Add the attribute [XmlInclude(typeof(TestInherited))] to the Test class
2) new XmlSerializer(typeof(Container), new Type[] { typeof(TestInherited) });

The second method is preferred. With the first method you have to decorate your base classes to which you may not always have access to, secondly the base class should not be aware of any class that inherits from it.

 

Note:特别的,当一个对象中的属性为基类或者object类型时,他的依赖注入的类型(即运行时类型)必须明确使用 XmlInclude属性标明序列化的类型,否则序列化会出错。

 

转载自 http://www.johnsoer.com/blog/?p=125

Reprint: Serialization

标签:

原文地址:http://www.cnblogs.com/anthonyBlog/p/4346319.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!