3 implementations of IViewContextAware
Microsoft.AspNetCore.Mvc.Localization (1)
ViewLocalizer.cs (1)
17
public class ViewLocalizer : IViewLocalizer,
IViewContextAware
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
HtmlHelper.cs (1)
19
public class HtmlHelper : IHtmlHelper,
IViewContextAware
ViewComponents\DefaultViewComponentHelper.cs (1)
19
public class DefaultViewComponentHelper : IViewComponentHelper,
IViewContextAware
4 references to IViewContextAware
Microsoft.AspNetCore.Mvc.Razor (2)
RazorPagePropertyActivator.cs (2)
87
(value as
IViewContextAware
)?.Contextualize(context);
128
(value as
IViewContextAware
)?.Contextualize(context);
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
TemplateRenderer.cs (1)
242
if (newHelper is
IViewContextAware
contextable)
ViewComponentResultExecutor.cs (1)
114
(viewComponentHelper as
IViewContextAware
)?.Contextualize(viewContext);