/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
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net.Http;
- using System.Threading.Tasks;
- using System.Web.Http;
- using System.Web.Mvc;
- using MvcExt.Tpl;
-
- namespace Teaching.Threading.Web.Controllers
- {
- public class Mvc3TplController : TplController
- {
- public async Task<ActionResult> Index()
- {
- await Task.Delay(5000);
-
- return View();
- }
- }
- }