8 references to PropertyActivator
Microsoft.AspNetCore.Mvc.Core (2)
Controllers\DefaultControllerPropertyActivator.cs (2)
65p => new PropertyActivator<ControllerContext>(p, c => c)); 70p => new PropertyActivator<ControllerContext>(p, c => c)));
Microsoft.AspNetCore.Mvc.Razor (3)
DefaultTagHelperFactory.cs (1)
86return new PropertyActivator<ViewContext>(property, viewContext => viewContext);
RazorPagePropertyActivator.cs (1)
134return new PropertyActivator<ViewContext>(property, valueAccessor);
TagHelpers\TagHelperComponentPropertyActivator.cs (1)
45return new PropertyActivator<ViewContext>(property, viewContext => viewContext);
Microsoft.AspNetCore.Mvc.RazorPages (1)
Infrastructure\DefaultPageModelFactoryProvider.cs (1)
73new PropertyActivator<PageContext>(property, pageContext => pageContext);
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
ViewComponents\DefaultViewComponentFactory.cs (1)
66return new PropertyActivator<ViewComponentContext>(property, context => context);
ViewDataDictionaryControllerPropertyActivator.cs (1)
83p => new PropertyActivator<ControllerContext>(p, GetViewDataDictionary));