|
by luisabreu via LA.NET [EN] on 4/30/2009 9:06:31 AM
Today we’re going to keep looking at the internals of the SharpArch.Web assembly and we’ll take a quick peek at the JsonNetResult class. This is a custom ActionResult class which you can use if you need to return JSON serialized by the Json.NET serializer to the client. As you recall, custom ActionResult classes are supposed to override the ExecuteResult method in order to write the response that is sent back to the client. In this case, the code for that method is really simple: it
... [ read more ]
|