46 lines
1.4 KiB
C#
46 lines
1.4 KiB
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
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" });
|
|
}
|
|
}
|
|
}
|