MVC3 integrated, with some changes to make it compile on Mono and with Razor2
[mono-project.git] / mcs / class / System.Web.Mvc3 / Mvc / IResultFilter.cs
blob73a5f0b7caa1edd3aafbcbb1c8c66a43e85fbd24
1 namespace System.Web.Mvc {
3 public interface IResultFilter {
4 void OnResultExecuting(ResultExecutingContext filterContext);
5 void OnResultExecuted(ResultExecutedContext filterContext);