2 implementations of FindView
Microsoft.AspNetCore.Mvc.Razor (1)
RazorViewEngine.cs (1)
154public ViewEngineResult FindView(ActionContext context, string viewName, bool isMainPage)
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
ViewEngines\CompositeViewEngine.cs (1)
28public ViewEngineResult FindView(ActionContext context, string viewName, bool isMainPage)
10 references to FindView
Microsoft.AspNetCore.Identity.UI (2)
_generated\38\_Layout_cshtml.g.cs (1)
275var result = Engine.FindView(ViewContext, "_LoginPartial", isMainPage: false);
_generated\80\_Layout_cshtml.g.cs (1)
278var result = Engine.FindView(ViewContext, "_LoginPartial", isMainPage: false);
Microsoft.AspNetCore.Mvc.Razor (1)
IRazorViewEngine.cs (1)
22/// <seealso cref="IViewEngine.FindView"/>.
Microsoft.AspNetCore.Mvc.TagHelpers (1)
PartialTagHelper.cs (1)
186viewEngineResult = _viewEngine.FindView(ViewContext, partialName, isMainPage: false);
Microsoft.AspNetCore.Mvc.ViewFeatures (6)
HtmlHelper.cs (1)
519viewEngineResult = _viewEngine.FindView(ViewContext, partialViewName, isMainPage: false);
PartialViewResultExecutor.cs (1)
75result = viewEngine.FindView(actionContext, viewName, isMainPage: false);
TemplateRenderer.cs (1)
110viewEngineResult = _viewEngine.FindView(_viewContext, fullViewName, isMainPage: false);
ViewComponents\ViewViewComponentResult.cs (1)
105result = viewEngine.FindView(viewContext, qualifiedViewName, isMainPage: false);
ViewEngines\CompositeViewEngine.cs (1)
46var result = ViewEngines[i].FindView(context, viewName, isMainPage);
ViewResultExecutor.cs (1)
76result = viewEngine.FindView(actionContext, viewName, isMainPage: true);