Merge pull request #757 from mlintner/master
[mono.git] / mcs / class / System.Web.Mvc3 / Mvc / IViewEngine.cs
1 namespace System.Web.Mvc {
2
3     public interface IViewEngine {
4         ViewEngineResult FindPartialView(ControllerContext controllerContext, string partialViewName, bool useCache);
5         ViewEngineResult FindView(ControllerContext controllerContext, string viewName, string masterName, bool useCache);
6         void ReleaseView(ControllerContext controllerContext, IView view);
7     }
8 }