I'm looking for a list of the inbuilt (and 3rd party would be a bonus) ActionResults you have available to you in a controller in ASP.NET MVC.
So far I've discovered the following:
- ContentResult - this.Content()
- ActionResult - this.View()
- JsonResult - this.Json()
- JavascriptResult - this.Javascript()
- PartialViewResult - this.PartialView()
Have I missed any useful ones that are out there?