PageRenderTime 38ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/Code/Source/Teaching.Threading.Web/Controllers/Mvc3TplController.cs

https://bitbucket.org/BernhardGlueck/teaching
C# | 21 lines | 19 code | 2 blank | 0 comment | 0 complexity | 5db68969dc7349331ee58fa01725d78a MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Net.Http;
  5. using System.Threading.Tasks;
  6. using System.Web.Http;
  7. using System.Web.Mvc;
  8. using MvcExt.Tpl;
  9. namespace Teaching.Threading.Web.Controllers
  10. {
  11. public class Mvc3TplController : TplController
  12. {
  13. public async Task<ActionResult> Index()
  14. {
  15. await Task.Delay(5000);
  16. return View();
  17. }
  18. }
  19. }