1 instantiation of ApplicationPartManager
Microsoft.AspNetCore.Mvc.Core (1)
DependencyInjection\MvcCoreServiceCollectionExtensions.cs (1)
77
manager = new
ApplicationPartManager
();
50 references to ApplicationPartManager
Microsoft.AspNetCore.Mvc (1)
MvcServiceCollectionExtensions.cs (1)
323
internal static void AddTagHelpersFrameworkParts(
ApplicationPartManager
partManager)
Microsoft.AspNetCore.Mvc.Core (27)
ApplicationModels\ControllerActionDescriptorProvider.cs (2)
13
private readonly
ApplicationPartManager
_partManager;
17
ApplicationPartManager
partManager,
ApplicationParts\ApplicationPartManager.cs (1)
34
/// <see cref="
ApplicationPartManager
"/>.
ApplicationParts\IApplicationFeatureProviderOfT.cs (1)
20
/// are stored in <see cref="
ApplicationPartManager
.ApplicationParts"/>. This ordering may be used by the feature
Controllers\ControllerFeature.cs (2)
12
/// using the <see cref="
ApplicationPartManager
"/> that is available during startup at <see cref="IMvcBuilder.PartManager"/>
13
/// and <see cref="IMvcCoreBuilder.PartManager"/> or at a later stage by requiring the <see cref="
ApplicationPartManager
"/>
DependencyInjection\IMvcBuilder.cs (2)
19
/// Gets the <see cref="
ApplicationPartManager
"/> where <see cref="ApplicationPart"/>s
22
ApplicationPartManager
PartManager { get; }
DependencyInjection\IMvcCoreBuilder.cs (2)
19
/// Gets the <see cref="
ApplicationPartManager
"/> where <see cref="ApplicationPart"/>s
22
ApplicationPartManager
PartManager { get; }
DependencyInjection\MvcBuilder.cs (3)
17
/// <param name="manager">The <see cref="
ApplicationPartManager
"/> of the application.</param>
18
public MvcBuilder(IServiceCollection services,
ApplicationPartManager
manager)
31
public
ApplicationPartManager
PartManager { get; }
DependencyInjection\MvcCoreBuilder.cs (3)
17
/// <param name="manager">The <see cref="
ApplicationPartManager
"/> of the application.</param>
20
ApplicationPartManager
manager)
30
public
ApplicationPartManager
PartManager { get; }
DependencyInjection\MvcCoreMvcBuilderExtensions.cs (3)
73
/// Adds an <see cref="ApplicationPart"/> to the list of <see cref="
ApplicationPartManager
.ApplicationParts"/> on the
97
/// Configures the <see cref="
ApplicationPartManager
"/> of the <see cref="IMvcBuilder.PartManager"/> using
105
Action<
ApplicationPartManager
> setupAction)
DependencyInjection\MvcCoreMvcCoreBuilderExtensions.cs (3)
155
/// Adds an <see cref="ApplicationPart"/> to the list of <see cref="
ApplicationPartManager
.ApplicationParts"/> on the
179
/// Configures the <see cref="
ApplicationPartManager
"/> of the <see cref="IMvcCoreBuilder.PartManager"/> using
187
Action<
ApplicationPartManager
> setupAction)
DependencyInjection\MvcCoreServiceCollectionExtensions.cs (5)
52
var
partManager = GetApplicationPartManager(services, environment);
64
private static void ConfigureDefaultFeatureProviders(
ApplicationPartManager
manager)
72
private static
ApplicationPartManager
GetApplicationPartManager(IServiceCollection services, IWebHostEnvironment? environment)
74
var
manager = GetServiceFromCollection<
ApplicationPartManager
>(services);
Microsoft.AspNetCore.Mvc.Razor (8)
Compilation\DefaultViewCompiler.cs (2)
21
private readonly
ApplicationPartManager
_applicationPartManager;
27
ApplicationPartManager
applicationPartManager,
Compilation\DefaultViewCompilerProvider.cs (1)
15
ApplicationPartManager
applicationPartManager,
DependencyInjection\MvcRazorMvcCoreBuilderExtensions.cs (1)
64
internal static void AddRazorViewEngineFeatureProviders(
ApplicationPartManager
partManager)
DependencyInjection\TagHelpersAsServices.cs (1)
14
public static void AddTagHelpersAsServices(
ApplicationPartManager
manager, IServiceCollection services)
RazorHotReload.cs (1)
26
ApplicationPartManager
applicationPartManager)
TagHelpers\TagHelperFeature.cs (2)
12
/// using the <see cref="
ApplicationPartManager
"/> that is available during startup at <see cref="IMvcBuilder.PartManager"/>
13
/// and <see cref="IMvcCoreBuilder.PartManager"/> or at a later stage by requiring the <see cref="
ApplicationPartManager
"/>
Microsoft.AspNetCore.Mvc.RazorPages (7)
ApplicationModels\CompiledPageRouteModelProvider.cs (4)
20
private readonly
ApplicationPartManager
_applicationManager;
25
ApplicationPartManager
applicationManager,
48
private IEnumerable<CompiledViewDescriptor> GetViewDescriptors(
ApplicationPartManager
applicationManager)
80
protected virtual ViewsFeature GetViewFeature(
ApplicationPartManager
applicationManager)
Infrastructure\CompiledPageActionDescriptorProvider.cs (3)
21
private readonly
ApplicationPartManager
_applicationPartManager;
29
/// <param name="applicationPartManager">The <see cref="
ApplicationPartManager
"/>.</param>
35
ApplicationPartManager
applicationPartManager,
Microsoft.AspNetCore.Mvc.ViewFeatures (7)
DependencyInjection\MvcViewFeaturesMvcCoreBuilderExtensions.cs (1)
62
internal static void AddViewComponentApplicationPartsProviders(
ApplicationPartManager
manager)
ViewComponents\DefaultViewComponentDescriptorProvider.cs (4)
18
private readonly
ApplicationPartManager
_partManager;
23
/// <param name="partManager">The <see cref="
ApplicationPartManager
"/>.</param>
24
public DefaultViewComponentDescriptorProvider(
ApplicationPartManager
partManager)
38
/// Gets the candidate <see cref="TypeInfo"/> instances provided by the <see cref="
ApplicationPartManager
"/>.
ViewComponents\ViewComponentFeature.cs (2)
12
/// using the <see cref="
ApplicationPartManager
"/> that is available during startup at <see cref="IMvcBuilder.PartManager"/>
13
/// and <see cref="IMvcCoreBuilder.PartManager"/> or at a later stage by requiring the <see cref="
ApplicationPartManager
"/>