/Was.JsonNetResult

Helper result for newtonsofr

Primary LanguageC#

Was.JsonNetResult

Helper result for newtonsoft.

What is included?

The main class is JsonNetResult:

public class JsonNetResult : JsonResult
{
  ...
}

Extension method for controller:

public classs HomeController : Controller
{
    public ActionResult MyJson() 
    { 
         return this.JsonNetResult(new { isOk = true; }, null, null, JsonRequestBehavior.AllowGet);            
    }
}