1 type derived from PageBase
Microsoft.AspNetCore.Mvc.RazorPages (1)
Page.cs (1)
9
public abstract class Page :
PageBase
12 references to PageBase
Microsoft.AspNetCore.Mvc.RazorPages (12)
ApplicationModels\DefaultPageApplicationModelPartsProvider.cs (1)
196
declaringType == typeof(
PageBase
) ||
ApplicationModels\DefaultPageApplicationModelProvider.cs (2)
67
if (!typeof(
PageBase
).GetTypeInfo().IsAssignableFrom(pageTypeInfo))
71
typeof(
PageBase
).FullName));
Infrastructure\DefaultPageFactoryProvider.cs (4)
44
if (!typeof(
PageBase
).GetTypeInfo().IsAssignableFrom(actionDescriptor.PageTypeInfo))
48
typeof(
PageBase
).FullName));
61
var
page = (
PageBase
)activatorFactory(pageContext, viewContext);
Infrastructure\PageActionInvoker.cs (3)
26
private
PageBase
? _page;
124
_page = (
PageBase
)CacheEntry.PageFactory(_pageContext, _viewContext);
162
_page = (
PageBase
)CacheEntry.PageFactory(_pageContext, _viewContext);
PageResult.cs (2)
26
/// Gets or sets the <see cref="
PageBase
"/> to be executed.
28
public
PageBase
Page { get; set; } = default!;