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?

link|improve this question

68% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Just like you can create Thing like so

Thing x = new Thing { X = "hello", Y = "world" }

So no it does not call the constructor to answer your question.

Ok, more detail...

It takes the JSON and deserializes it. It fills the properties from you JSON object. For example, if you had the following in JSON:

{"notRelated":0, "test": "string"}

The serializer would not find X or Y for thing and set them to the default value for that data type.

Let's say you want to go deeper. You can custom serialize and deserialize your objects:

[Serializable]
public class MyObject : ISerializable 
{
  public int n1;
  public int n2;
  public String str;

  public MyObject()
  {
  }

  protected MyObject(SerializationInfo info, StreamingContext context)
  {
    n1 = info.GetInt32("i");
    n2 = info.GetInt32("j");
    str = info.GetString("k");
  }
[SecurityPermissionAttribute(SecurityAction.Demand,SerializationFormatter=true)]
  public virtual void GetObjectData(SerializationInfo info, StreamingContext context)
  {
    info.AddValue("i", n1);
    info.AddValue("j", n2);
    info.AddValue("k", str);
  }
}

So you can see, it's fishing for parameters in your case, X and Y.

link|improve this answer
So... Is there a particular 'serializer' class that gets invoked? – Daniel Allen Langdon Jul 12 '11 at 13:56
JavaScriptSerializer is invoked like so serializer.Deserialize<Thing>(jsonResponse); – Joe Tuskan Jul 12 '11 at 14:03
So then, there must be something that happens before JavaScriptSerializer is invoked so that the framework identifies the response as JSON. – Daniel Allen Langdon Jul 12 '11 at 14:52
Header in the Request: application/json – Joe Tuskan Jul 12 '11 at 15:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.