1 implementation of IApplicationPartTypeProvider
Microsoft.AspNetCore.Mvc.Core (1)
ApplicationParts\AssemblyPart.cs (1)
11public class AssemblyPart : ApplicationPart, IApplicationPartTypeProvider
4 references to IApplicationPartTypeProvider
Microsoft.AspNetCore.Mvc.Core (2)
Controllers\ControllerFeatureProvider.cs (2)
22foreach (var part in parts.OfType<IApplicationPartTypeProvider>())
Microsoft.AspNetCore.Mvc.Razor (1)
TagHelpers\TagHelperFeatureProvider.cs (1)
20if (IncludePart(part) && part is IApplicationPartTypeProvider typeProvider)
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
ViewComponents\ViewComponentFeatureProvider.cs (1)
20foreach (var type in parts.OfType<IApplicationPartTypeProvider>().SelectMany(p => p.Types))