, AMF (, google, ). , U ASP.MVC. , JSON .
SO:
public ActionResult MyAction()
{
...
return new JsonResult{ Data = myObject };
}
, , , AMF . , , .
.
public ActionResult MyAction()
{
...
return new JsonResult
{
Data = new
{
Id = object.Id,
Name = object.FirstName + ' ' object.Surname,
.... etc ....
}
};
}
.