How does WCF deserialization instantiate objects without calling a constructor? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T08:19:19Zhttp://stackoverflow.com/feeds/question/178645http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/178645/how-does-wcf-deserialization-instantiate-objects-without-calling-a-constructor5How does WCF deserialization instantiate objects without calling a constructor?Drew Noakes2008-10-07T14:15:21Z2009-02-20T14:13:37Z
<p>There is some magic going on with WCF deserialization. How does it instantiate an instance of the data contract type without calling its constructor?</p>
<p>For example, consider this data contract:</p>
<pre><code>[DataContract]
public sealed class CreateMe
{
[DataMember] private readonly string _name;
[DataMember] private readonly int _age;
private readonly bool _wasConstructorCalled;
public CreateMe()
{
_wasConstructorCalled = true;
}
// ... other members here
}
</code></pre>
<p>When obtaining an instance of this object via <code>DataContractSerializer</code> you will see that the field <code>_wasConstructorCalled</code> is <code>false</code>.</p>
<p>So, how does WCF do this? Is this a technique that others can use too, or is it hidden away from us?</p>
http://stackoverflow.com/questions/178645/how-does-wcf-deserialization-instantiate-objects-without-calling-a-constructor/179486#1794869Answer by Jason Jackson for How does WCF deserialization instantiate objects without calling a constructor?Jason Jackson2008-10-07T17:20:30Z2008-10-07T17:53:26Z<p>FormatterServices.GetUninitializedObject() will create an instance without calling a constructor. I found this class by using <a href="http://www.red-gate.com/products/reflector/index.htm" rel="nofollow">Reflector</a> and digging through some of the core .Net serialization classes. </p>
<p>I tested it using the sample code below and it looks like it works great:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using System.Runtime.Serialization;
namespace NoConstructorThingy
{
class Program
{
static void Main(string[] args)
{
MyClass myClass = (MyClass)FormatterServices.GetUninitializedObject(typeof(MyClass)); //does not call ctor
myClass.One = 1;
Console.WriteLine(myClass.One); //write "1"
Console.ReadKey();
}
}
public class MyClass
{
public MyClass()
{
Console.WriteLine("MyClass ctor called.");
}
public int One
{
get;
set;
}
}
}
</code></pre>