Skip to content

Instantly share code, notes, and snippets.

@jesulink2514
Last active May 5, 2021 14:19
Show Gist options
  • Save jesulink2514/0075ef680e8ec0eab868 to your computer and use it in GitHub Desktop.
Save jesulink2514/0075ef680e8ec0eab868 to your computer and use it in GitHub Desktop.
Sample code of ASP.net MVC IViewEngine interface
namespace System.Web.Mvc
{
public interface IViewEngine
{
ViewEngineResult FindPartialView(ControllerContext controllerContext, string partialViewName, bool useCache);
ViewEngineResult FindView(ControllerContext controllerContext, string viewName, string masterName, bool useCache);
void ReleaseView(ControllerContext controllerContext, IView view);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment