PlaintextController.cs 246 B

123456789101112
  1. using System.Web.Mvc;
  2. namespace Benchmarks.AspNet.Controllers
  3. {
  4. public class PlaintextController : Controller
  5. {
  6. public ActionResult Index()
  7. {
  8. return Content("Hello, World!", "text/plain");
  9. }
  10. }
  11. }