1 implementation of PartManager
Microsoft.AspNetCore.Mvc.Core (1)
DependencyInjection\MvcCoreBuilder.cs (1)
30public ApplicationPartManager PartManager { get; }
19 references to PartManager
Microsoft.AspNetCore.Mvc (8)
MvcServiceCollectionExtensions.cs (8)
88return new MvcBuilder(builder.Services, builder.PartManager); 129return new MvcBuilder(builder.Services, builder.PartManager); 181return new MvcBuilder(builder.Services, builder.PartManager); 220return new MvcBuilder(builder.Services, builder.PartManager); 230AddTagHelpersFrameworkParts(builder.PartManager); 262return new MvcBuilder(builder.Services, builder.PartManager); 298return new MvcBuilder(builder.Services, builder.PartManager); 312AddTagHelpersFrameworkParts(builder.PartManager);
Microsoft.AspNetCore.Mvc.Core (5)
Controllers\ControllerFeature.cs (1)
13/// and <see cref="IMvcCoreBuilder.PartManager"/> or at a later stage by requiring the <see cref="ApplicationPartManager"/>
DependencyInjection\MvcCoreMvcCoreBuilderExtensions.cs (4)
142builder.PartManager.PopulateFeature(feature); 156/// <see cref="IMvcCoreBuilder.PartManager"/>. 179/// Configures the <see cref="ApplicationPartManager"/> of the <see cref="IMvcCoreBuilder.PartManager"/> using 192setupAction(builder.PartManager);
Microsoft.AspNetCore.Mvc.Razor (4)
DependencyInjection\MvcRazorMvcCoreBuilderExtensions.cs (3)
36AddRazorViewEngineFeatureProviders(builder.PartManager); 56AddRazorViewEngineFeatureProviders(builder.PartManager); 87TagHelpersAsServices.AddTagHelpersAsServices(builder.PartManager, builder.Services);
TagHelpers\TagHelperFeature.cs (1)
13/// and <see cref="IMvcCoreBuilder.PartManager"/> or at a later stage by requiring the <see cref="ApplicationPartManager"/>
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
DependencyInjection\MvcViewFeaturesMvcCoreBuilderExtensions.cs (1)
38AddViewComponentApplicationPartsProviders(builder.PartManager);
ViewComponents\ViewComponentFeature.cs (1)
13/// and <see cref="IMvcCoreBuilder.PartManager"/> or at a later stage by requiring the <see cref="ApplicationPartManager"/>