Suppose I write the following C# code to define a web method:
public class Thing
{
public string X {get;set}
public string Y {get;set}
}
[WebMethod]
public static void myFunction(Thing thing) { }
I've discovered that I can invoke the function using the jQuery JavaScript that looks like this:
var myData = { X: "hello", Y: "world" };
var jsonData = JSON.stringify(myData);
jQuery.ajax({ data: jsonData, ...
When myFunction is thus invoked, thing.X is set to "hello" and thing.Y is set to "world". What exactly does the .net framework do to set the value of thing? Does it invoke a constructor?