43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
using System.Diagnostics;
|
|
using System.Globalization;
|
|
using Microsoft.AspNet.Mvc;
|
|
|
|
namespace MvcSample.Web
|
|
{
|
|
public class SimplePocoController : IActionFilter, IResultFilter
|
|
{
|
|
private Stopwatch _timer;
|
|
|
|
public string Index()
|
|
{
|
|
return "Hello world";
|
|
}
|
|
|
|
public void OnActionExecuting(ActionExecutingContext context)
|
|
{
|
|
_timer = Stopwatch.StartNew();
|
|
}
|
|
|
|
public void OnActionExecuted(ActionExecutedContext context)
|
|
{
|
|
var time = _timer.ElapsedMilliseconds;
|
|
context.HttpContext.Response.Headers.Add(
|
|
"ActionElapsedTime",
|
|
new string[] { time.ToString(CultureInfo.InvariantCulture) + " ms" });
|
|
}
|
|
|
|
public void OnResultExecuting(ResultExecutingContext context)
|
|
{
|
|
_timer = Stopwatch.StartNew();
|
|
}
|
|
|
|
public void OnResultExecuted(ResultExecutedContext context)
|
|
{
|
|
var time = _timer.ElapsedMilliseconds;
|
|
context.HttpContext.Response.Headers.Add(
|
|
"ResultElapsedTime",
|
|
new string[] { time.ToString(CultureInfo.InvariantCulture) + " ms" });
|
|
}
|
|
}
|
|
}
|