7 references to View
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
ViewComponent.cs (2)
193return View(viewName, ViewData.Model); 203return View(viewName: null, model: model);
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (3)
ViewComponentTests.cs (3)
167var actualResult = viewComponent.View<object>("CustomViewName", model: null); 186var actualResult = viewComponent.View<string>("CustomViewName", model: null); 206var actualResult = viewComponent.View("CustomViewName", model);
RazorWebSite (2)
Components\ComponentWithRelativePath.cs (1)
12return View("../Shared/Components/ComponentWithRelativePath.cshtml", person);
Components\InheritingViewComponent.cs (1)
13return View("/Views/InheritingInherits/_ViewComponent.cshtml", address);