/Code/Source/Teaching.Threading.Web/Controllers/Mvc4TplController.cs
https://bitbucket.org/BernhardGlueck/teaching · C# · 20 lines · 18 code · 2 blank · 0 comment · 0 complexity · d43c0ad656c88ef552f036c0f24d8a59 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;
-
- namespace Teaching.Threading.Web.Controllers
- {
- public class Mvc4TplController : AsyncController
- {
- public async Task<ActionResult> Index()
- {
- await Task.Delay(5000);
-
- return View();
- }
- }
- }