1 implementation of IRazorPageFactoryProvider
Microsoft.AspNetCore.Mvc.Razor (1)
Compilation\DefaultRazorPageFactoryProvider.cs (1)
12internal sealed class DefaultRazorPageFactoryProvider : IRazorPageFactoryProvider
7 references to IRazorPageFactoryProvider
Microsoft.AspNetCore.Mvc.Razor (5)
Compilation\DefaultRazorPageFactoryProvider.cs (1)
9/// Represents a <see cref="IRazorPageFactoryProvider"/> that creates <see cref="RazorPage"/> instances
DependencyInjection\MvcRazorMvcCoreBuilderExtensions.cs (1)
136services.TryAddTransient<IRazorPageFactoryProvider, DefaultRazorPageFactoryProvider>();
RazorPageFactoryResult.cs (1)
10/// Result of <see cref="IRazorPageFactoryProvider.CreateFactory(string)"/>.
RazorViewEngine.cs (2)
39private readonly IRazorPageFactoryProvider _pageFactory; 50IRazorPageFactoryProvider pageFactory,
Microsoft.AspNetCore.Mvc.RazorPages (2)
Infrastructure\PageActionInvokerCache.cs (2)
18private readonly IRazorPageFactoryProvider _razorPageFactoryProvider; 26IRazorPageFactoryProvider razorPageFactoryProvider,