Why XML-Serializable class need a parameterless constructor - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T12:20:11Zhttp://stackoverflow.com/feeds/question/267724http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/267724/why-xml-serializable-class-need-a-parameterless-constructor9Why XML-Serializable class need a parameterless constructorMorgan Cheng2008-11-06T05:33:43Z2009-07-01T09:13:27Z
<p>I'm writing code to do Xml serialization. With below function.</p>
<pre><code>public static string SerializeToXml(object obj)
{
XmlSerializer serializer = new XmlSerializer(obj.GetType());
using (StringWriter writer = new StringWriter())
{
serializer.Serialize(writer, obj);
return writer.ToString();
}
}
</code></pre>
<p>If the argument is a instance of class without parameterless constructor, it will throw a exception.</p>
<blockquote>
<p>Unhandled Exception:
System.InvalidOperationException:
CSharpConsole.Foo cannot be serialized
because it does not have a
parameterless constructor. at
System.Xml.Serialization.TypeDesc.CheckSupported()
at
System.Xml.Serialization.TypeScope.GetTypeDesc(Type
type, MemberInfo sourc e, Boolean
directReference, Boolean throwOnError)
at
System.Xml.Serialization.ModelScope.GetTypeModel(Type
type, Boolean direct Reference) at
System.Xml.Serialization.XmlReflectionImporter.ImportTypeMapping(Type
type , XmlRootAttribute root, String
defaultNamespace) at
System.Xml.Serialization.XmlSerializer..ctor(Type
type, String defaultName space) at
System.Xml.Serialization.XmlSerializer..ctor(Type
type)</p>
</blockquote>
<p>Why must there be a parameterless constructor in order to allow xml serialization to succeed?</p>
<p>EDIT: thanks for cfeduke's answer. The parameterless constructor can be private or internal.</p>
http://stackoverflow.com/questions/267724/why-xml-serializable-class-need-a-parameterless-constructor/267727#26772716Answer by cfeduke for Why XML-Serializable class need a parameterless constructorcfeduke2008-11-06T05:37:22Z2009-01-24T06:44:34Z<p>During an object's de-serialization, the class responsible for de-serializing an object creates an instance of the serialized class and then proceeds to populate the serialized fields and properties only after acquiring an instance to populate.</p>
<p>You can make your constructor <code>private</code> or <code>internal</code> if you want, just so long as its parameterless.</p>
http://stackoverflow.com/questions/267724/why-xml-serializable-class-need-a-parameterless-constructor/267734#2677340Answer by Dmitry Khalatov for Why XML-Serializable class need a parameterless constructorDmitry Khalatov2008-11-06T05:47:08Z2008-11-06T05:47:08Z<p>First of all, this what is written in <a href="http://msdn.microsoft.com/en-us/library/system.xml.serialization.ixmlserializable.aspx" rel="nofollow">documentation</a>. I think it is one of your class fields, not the main one - and how you want deserialiser to construct it back w/o parameterless construction ? </p>
<p>I think there is a workaround to make constructor private.</p>
http://stackoverflow.com/questions/267724/why-xml-serializable-class-need-a-parameterless-constructor/267904#2679045Answer by Marc Gravell for Why XML-Serializable class need a parameterless constructorMarc Gravell2008-11-06T08:02:33Z2008-12-24T17:17:08Z<p>This is a limitation of <code>XmlSerializer</code>. Note that <code>BinaryFormatter</code> and <code>DataContractSerializer</code> <em>do not</em> require this - they can create an uninitialized object out of the ether and initialize it during deserialization.</p>
<p>Since you are using xml, you might consider using <code>DataContractSerializer</code> and marking your class with <code>[DataContract]</code>/<code>[DataMember</code>], but note that this changes the schema (for example, there is no equivalent of <code>[XmlAttribute]</code> - everything becomes elements).</p>
<p>Update: if you really want to know, <code>BinaryFormatter</code> et al use <a href="http://msdn.microsoft.com/en-us/library/system.runtime.serialization.formatterservices.getuninitializedobject.aspx" rel="nofollow"><code>FormatterServices.GetUninitializedObject()</code></a> to create the object without invoking the constructor. Probably dangerous; I don't recommend using it too often ;-p See also the remarks on MSDN:</p>
<blockquote>
<p>Because the new instance of the object
is initialized to zero and no
constructors are run, the object might
not represent a state that is regarded
as valid by that object. The current
method should only be used for
deserialization when the user intends
to immediately populate all fields. It
does not create an uninitialized
string, since creating an empty
instance of an immutable type serves
no purpose.</p>
</blockquote>
<p>I have my <a href="http://code.google.com/p/protobuf-net/" rel="nofollow">own</a> serialization engine, but I don't intend making it use <code>FormatterServices</code>; I quite like knowing that a constructor (<em>any</em> constructor) has actually executed.</p>