1 implementation of ICompositeViewEngine
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
ViewEngines\CompositeViewEngine.cs (1)
13
public 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>
35
ICompositeViewEngine
compositeViewEngine,
Microsoft.AspNetCore.Mvc.TagHelpers (3)
PartialTagHelper.cs (3)
29
private readonly
ICompositeViewEngine
_viewEngine;
35
/// <param name="viewEngine">The <see cref="
ICompositeViewEngine
"/> used to locate the partial view.</param>
38
ICompositeViewEngine
viewEngine,
Microsoft.AspNetCore.Mvc.ViewFeatures (28)
DefaultDisplayTemplates.cs (4)
108
var
viewEngine = serviceProvider.GetRequiredService<
ICompositeViewEngine
>();
209
var
viewEngine = serviceProvider.GetRequiredService<
ICompositeViewEngine
>();
DefaultEditorTemplates.cs (4)
91
var
viewEngine = serviceProvider.GetRequiredService<
ICompositeViewEngine
>();
252
var
viewEngine = serviceProvider.GetRequiredService<
ICompositeViewEngine
>();
DependencyInjection\MvcViewFeaturesMvcCoreBuilderExtensions.cs (1)
144
services.TryAddSingleton<
ICompositeViewEngine
, CompositeViewEngine>();
HtmlHelper.cs (2)
52
private readonly
ICompositeViewEngine
_viewEngine;
63
ICompositeViewEngine
viewEngine,
HtmlHelperOfT.cs (1)
27
ICompositeViewEngine
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>
38
ICompositeViewEngine
viewEngine,
ViewComponent.cs (4)
29
private
ICompositeViewEngine
? _viewEngine;
142
/// Gets or sets the <see cref="
ICompositeViewEngine
"/>.
144
public
ICompositeViewEngine
ViewEngine
152
_viewEngine = services?.GetRequiredService<
ICompositeViewEngine
>();
ViewComponents\ViewViewComponentResult.cs (1)
131
return 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>
41
ICompositeViewEngine
viewEngine,
60
/// <param name="viewEngine">The <see cref="
ICompositeViewEngine
"/>.</param>
64
ICompositeViewEngine
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>
38
ICompositeViewEngine
viewEngine,