1 implementation of ICompositeViewEngine
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
ViewEngines\CompositeViewEngine.cs (1)
13public class CompositeViewEngine : ICompositeViewEngine
33 references to ICompositeViewEngine
Microsoft.AspNetCore.Mvc.RazorPages (2)
Infrastructure\PageResultExecutor.cs (2)
28/// <param name="compositeViewEngine">The <see cref="ICompositeViewEngine"/>.</param> 35ICompositeViewEngine compositeViewEngine,
Microsoft.AspNetCore.Mvc.TagHelpers (3)
PartialTagHelper.cs (3)
29private readonly ICompositeViewEngine _viewEngine; 35/// <param name="viewEngine">The <see cref="ICompositeViewEngine"/> used to locate the partial view.</param> 38ICompositeViewEngine viewEngine,
Microsoft.AspNetCore.Mvc.ViewFeatures (28)
DefaultDisplayTemplates.cs (4)
108var viewEngine = serviceProvider.GetRequiredService<ICompositeViewEngine>(); 209var viewEngine = serviceProvider.GetRequiredService<ICompositeViewEngine>();
DefaultEditorTemplates.cs (4)
91var viewEngine = serviceProvider.GetRequiredService<ICompositeViewEngine>(); 252var viewEngine = serviceProvider.GetRequiredService<ICompositeViewEngine>();
DependencyInjection\MvcViewFeaturesMvcCoreBuilderExtensions.cs (1)
144services.TryAddSingleton<ICompositeViewEngine, CompositeViewEngine>();
HtmlHelper.cs (2)
52private readonly ICompositeViewEngine _viewEngine; 63ICompositeViewEngine viewEngine,
HtmlHelperOfT.cs (1)
27ICompositeViewEngine viewEngine,
PartialViewResult.cs (1)
50/// <remarks>When <c>null</c>, an instance of <see cref="ICompositeViewEngine"/> from
PartialViewResultExecutor.cs (2)
30/// <param name="viewEngine">The <see cref="ICompositeViewEngine"/>.</param> 38ICompositeViewEngine viewEngine,
ViewComponent.cs (4)
29private ICompositeViewEngine? _viewEngine; 142/// Gets or sets the <see cref="ICompositeViewEngine"/>. 144public ICompositeViewEngine ViewEngine 152_viewEngine = services?.GetRequiredService<ICompositeViewEngine>();
ViewComponents\ViewViewComponentResult.cs (1)
131return context.ViewContext.HttpContext.RequestServices.GetRequiredService<ICompositeViewEngine>();
ViewEngines\ICompositeViewEngine.cs (1)
14/// Gets the list of <see cref="IViewEngine"/> this instance of <see cref="ICompositeViewEngine"/> delegates
ViewExecutor.cs (4)
34/// <param name="viewEngine">The <see cref="ICompositeViewEngine"/>.</param> 41ICompositeViewEngine viewEngine, 60/// <param name="viewEngine">The <see cref="ICompositeViewEngine"/>.</param> 64ICompositeViewEngine viewEngine,
ViewResult.cs (1)
50/// <remarks>When <c>null</c>, an instance of <see cref="ICompositeViewEngine"/> from
ViewResultExecutor.cs (2)
30/// <param name="viewEngine">The <see cref="ICompositeViewEngine"/>.</param> 38ICompositeViewEngine viewEngine,