3 implementations of PartManager
Microsoft.AspNetCore.Mvc.Core (1)
DependencyInjection\MvcBuilder.cs (1)
31public ApplicationPartManager PartManager { get; }
Microsoft.AspNetCore.Mvc.Localization.Test (1)
MvcLocalizationMvcBuilderExtensionsTest.cs (1)
145public ApplicationPartManager PartManager => new ApplicationPartManager();
RazorBuildWebSite (1)
StartupWithHostingStartup.cs (1)
52public ApplicationPartManager PartManager { get; }
12 references to PartManager
Microsoft.AspNetCore.Mvc.Core (5)
Controllers\ControllerFeature.cs (1)
12/// using the <see cref="ApplicationPartManager"/> that is available during startup at <see cref="IMvcBuilder.PartManager"/>
DependencyInjection\MvcCoreMvcBuilderExtensions.cs (4)
74/// <see cref="IMvcBuilder.PartManager"/>. 97/// Configures the <see cref="ApplicationPartManager"/> of the <see cref="IMvcBuilder.PartManager"/> using 110setupAction(builder.PartManager); 125builder.PartManager.PopulateFeature(feature);
Microsoft.AspNetCore.Mvc.Razor (2)
DependencyInjection\MvcRazorMvcBuilderExtensions.cs (1)
42TagHelpersAsServices.AddTagHelpersAsServices(builder.PartManager, builder.Services);
TagHelpers\TagHelperFeature.cs (1)
12/// using the <see cref="ApplicationPartManager"/> that is available during startup at <see cref="IMvcBuilder.PartManager"/>
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
DependencyInjection\MvcViewFeaturesMvcBuilderExtensions.cs (1)
46builder.PartManager.PopulateFeature(feature);
ViewComponents\ViewComponentFeature.cs (1)
12/// using the <see cref="ApplicationPartManager"/> that is available during startup at <see cref="IMvcBuilder.PartManager"/>
Mvc.RoutingWebSite (3)
StartupForRouteGroupsWithMetadata.cs (3)
22var old = builder.PartManager.FeatureProviders.OfType<IApplicationFeatureProvider<ControllerFeature>>().FirstOrDefault(); 23builder.PartManager.FeatureProviders.Remove(old); 24builder.PartManager.FeatureProviders.Add(