summaryrefslogtreecommitdiff
path: root/Tools/dotnetcli/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razorpages/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.xml
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/dotnetcli/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razorpages/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.xml')
-rw-r--r--Tools/dotnetcli/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razorpages/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.xml3268
1 files changed, 3268 insertions, 0 deletions
diff --git a/Tools/dotnetcli/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razorpages/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.xml b/Tools/dotnetcli/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razorpages/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.xml
new file mode 100644
index 0000000000..da4e397f52
--- /dev/null
+++ b/Tools/dotnetcli/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razorpages/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.xml
@@ -0,0 +1,3268 @@
+<?xml version="1.0"?>
+<doc>
+ <assembly>
+ <name>Microsoft.AspNetCore.Mvc.RazorPages</name>
+ </assembly>
+ <members>
+ <member name="M:Microsoft.Extensions.Internal.PropertyHelper.#ctor(System.Reflection.PropertyInfo)">
+ <summary>
+ Initializes a fast <see cref="T:Microsoft.Extensions.Internal.PropertyHelper"/>.
+ This constructor does not cache the helper. For caching, use <see cref="M:Microsoft.Extensions.Internal.PropertyHelper.GetProperties(System.Type)"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.Extensions.Internal.PropertyHelper.Property">
+ <summary>
+ Gets the backing <see cref="T:System.Reflection.PropertyInfo"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.Extensions.Internal.PropertyHelper.Name">
+ <summary>
+ Gets (or sets in derived types) the property name.
+ </summary>
+ </member>
+ <member name="P:Microsoft.Extensions.Internal.PropertyHelper.ValueGetter">
+ <summary>
+ Gets the property value getter.
+ </summary>
+ </member>
+ <member name="P:Microsoft.Extensions.Internal.PropertyHelper.ValueSetter">
+ <summary>
+ Gets the property value setter.
+ </summary>
+ </member>
+ <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetValue(System.Object)">
+ <summary>
+ Returns the property value for the specified <paramref name="instance"/>.
+ </summary>
+ <param name="instance">The object whose property value will be returned.</param>
+ <returns>The property value.</returns>
+ </member>
+ <member name="M:Microsoft.Extensions.Internal.PropertyHelper.SetValue(System.Object,System.Object)">
+ <summary>
+ Sets the property value for the specified <paramref name="instance" />.
+ </summary>
+ <param name="instance">The object whose property value will be set.</param>
+ <param name="value">The property value.</param>
+ </member>
+ <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetProperties(System.Reflection.TypeInfo)">
+ <summary>
+ Creates and caches fast property helpers that expose getters for every public get property on the
+ underlying type.
+ </summary>
+ <param name="typeInfo">The type info to extract property accessors for.</param>
+ <returns>A cached array of all public properties of the specified type.
+ </returns>
+ </member>
+ <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetProperties(System.Type)">
+ <summary>
+ Creates and caches fast property helpers that expose getters for every public get property on the
+ specified type.
+ </summary>
+ <param name="type">The type to extract property accessors for.</param>
+ <returns>A cached array of all public properties of the specified type.
+ </returns>
+ </member>
+ <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetVisibleProperties(System.Reflection.TypeInfo)">
+ <summary>
+ <para>
+ Creates and caches fast property helpers that expose getters for every non-hidden get property
+ on the specified type.
+ </para>
+ <para>
+ <see cref="M:GetVisibleProperties"/> excludes properties defined on base types that have been
+ hidden by definitions using the <c>new</c> keyword.
+ </para>
+ </summary>
+ <param name="typeInfo">The type info to extract property accessors for.</param>
+ <returns>
+ A cached array of all public properties of the specified type.
+ </returns>
+ </member>
+ <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetVisibleProperties(System.Type)">
+ <summary>
+ <para>
+ Creates and caches fast property helpers that expose getters for every non-hidden get property
+ on the specified type.
+ </para>
+ <para>
+ <see cref="M:GetVisibleProperties"/> excludes properties defined on base types that have been
+ hidden by definitions using the <c>new</c> keyword.
+ </para>
+ </summary>
+ <param name="type">The type to extract property accessors for.</param>
+ <returns>
+ A cached array of all public properties of the specified type.
+ </returns>
+ </member>
+ <member name="M:Microsoft.Extensions.Internal.PropertyHelper.MakeFastPropertyGetter(System.Reflection.PropertyInfo)">
+ <summary>
+ Creates a single fast property getter. The result is not cached.
+ </summary>
+ <param name="propertyInfo">propertyInfo to extract the getter for.</param>
+ <returns>a fast getter.</returns>
+ <remarks>
+ This method is more memory efficient than a dynamically compiled lambda, and about the
+ same speed.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.Extensions.Internal.PropertyHelper.MakeNullSafeFastPropertyGetter(System.Reflection.PropertyInfo)">
+ <summary>
+ Creates a single fast property getter which is safe for a null input object. The result is not cached.
+ </summary>
+ <param name="propertyInfo">propertyInfo to extract the getter for.</param>
+ <returns>a fast getter.</returns>
+ <remarks>
+ This method is more memory efficient than a dynamically compiled lambda, and about the
+ same speed.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.Extensions.Internal.PropertyHelper.MakeFastPropertySetter(System.Reflection.PropertyInfo)">
+ <summary>
+ Creates a single fast property setter for reference types. The result is not cached.
+ </summary>
+ <param name="propertyInfo">propertyInfo to extract the setter for.</param>
+ <returns>a fast getter.</returns>
+ <remarks>
+ This method is more memory efficient than a dynamically compiled lambda, and about the
+ same speed. This only works for reference types.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.Extensions.Internal.PropertyHelper.ObjectToDictionary(System.Object)">
+ <summary>
+ Given an object, adds each instance property with a public get method as a key and its
+ associated value to a dictionary.
+
+ If the object is already an <see cref="T:System.Collections.Generic.IDictionary`2"/> instance, then a copy
+ is returned.
+ </summary>
+ <remarks>
+ The implementation of PropertyHelper will cache the property accessors per-type. This is
+ faster when the the same type is used multiple times with ObjectToDictionary.
+ </remarks>
+ </member>
+ <member name="T:Microsoft.Extensions.Internal.ClosedGenericMatcher">
+ <summary>
+ Helper related to generic interface definitions and implementing classes.
+ </summary>
+ </member>
+ <member name="M:Microsoft.Extensions.Internal.ClosedGenericMatcher.ExtractGenericInterface(System.Type,System.Type)">
+ <summary>
+ Determine whether <paramref name="queryType"/> is or implements a closed generic <see cref="T:System.Type"/>
+ created from <paramref name="interfaceType"/>.
+ </summary>
+ <param name="queryType">The <see cref="T:System.Type"/> of interest.</param>
+ <param name="interfaceType">The open generic <see cref="T:System.Type"/> to match. Usually an interface.</param>
+ <returns>
+ The closed generic <see cref="T:System.Type"/> created from <paramref name="interfaceType"/> that
+ <paramref name="queryType"/> is or implements. <c>null</c> if the two <see cref="T:System.Type"/>s have no such
+ relationship.
+ </returns>
+ <remarks>
+ This method will return <paramref name="queryType"/> if <paramref name="interfaceType"/> is
+ <c>typeof(KeyValuePair{,})</c>, and <paramref name="queryType"/> is
+ <c>typeof(KeyValuePair{string, object})</c>.
+ </remarks>
+ </member>
+ <member name="T:Microsoft.Extensions.DependencyInjection.MvcRazorPagesMvcBuilderExtensions">
+ <summary>
+ Extensions methods for configuring Razor Pages via an <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcBuilder"/>.
+ </summary>
+ </member>
+ <member name="M:Microsoft.Extensions.DependencyInjection.MvcRazorPagesMvcBuilderExtensions.AddRazorPagesOptions(Microsoft.Extensions.DependencyInjection.IMvcBuilder,System.Action{Microsoft.AspNetCore.Mvc.RazorPages.RazorPagesOptions})">
+ <summary>
+ Configures a set of <see cref="T:Microsoft.AspNetCore.Mvc.Razor.RazorViewEngineOptions"/> for the application.
+ </summary>
+ <param name="builder">The <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcBuilder"/>.</param>
+ <param name="setupAction">An action to configure the <see cref="T:Microsoft.AspNetCore.Mvc.Razor.RazorViewEngineOptions"/>.</param>
+ <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcBuilder"/>.</returns>
+ </member>
+ <member name="M:Microsoft.Extensions.DependencyInjection.MvcRazorPagesMvcBuilderExtensions.WithRazorPagesRoot(Microsoft.Extensions.DependencyInjection.IMvcBuilder,System.String)">
+ <summary>
+ Configures Razor Pages to use the specified <paramref name="rootDirectory"/>.
+ </summary>
+ <param name="builder">The <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcCoreBuilder"/>.</param>
+ <param name="rootDirectory">The application relative path to use as the root directory.</param>
+ <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcBuilder"/>.</returns>
+ </member>
+ <member name="M:Microsoft.Extensions.DependencyInjection.MvcRazorPagesMvcBuilderExtensions.WithRazorPagesAtContentRoot(Microsoft.Extensions.DependencyInjection.IMvcBuilder)">
+ <summary>
+ Configures Razor Pages to be rooted at the content root (<see cref="P:Microsoft.AspNetCore.Hosting.IHostingEnvironment.ContentRootPath"/>).
+ </summary>
+ <param name="builder">The <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcCoreBuilder"/>.</param>
+ <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcBuilder"/>.</returns>
+ </member>
+ <member name="M:Microsoft.Extensions.DependencyInjection.MvcRazorPagesMvcCoreBuilderExtensions.WithRazorPagesRoot(Microsoft.Extensions.DependencyInjection.IMvcCoreBuilder,System.String)">
+ <summary>
+ Configures Razor Pages to use the specified <paramref name="rootDirectory"/>.
+ </summary>
+ <param name="builder">The <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcCoreBuilder"/>.</param>
+ <param name="rootDirectory">The application relative path to use as the root directory.</param>
+ <returns></returns>
+ </member>
+ <member name="T:Microsoft.Extensions.DependencyInjection.PageConventionCollectionExtensions">
+ <summary>
+ Extensions for <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/>.
+ </summary>
+ </member>
+ <member name="M:Microsoft.Extensions.DependencyInjection.PageConventionCollectionExtensions.ConfigureFilter(Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection,System.Func{Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel,Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata})">
+ <summary>
+ Configures the specified <paramref name="factory"/> to apply filters to all Razor Pages.
+ </summary>
+ <param name="conventions">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/> to configure.</param>
+ <param name="factory">The factory to create filters.</param>
+ <returns></returns>
+ </member>
+ <member name="M:Microsoft.Extensions.DependencyInjection.PageConventionCollectionExtensions.ConfigureFilter(Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection,Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata)">
+ <summary>
+ Configures the specified <paramref name="filter"/> to apply to all Razor Pages.
+ </summary>
+ <param name="conventions">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/> to configure.</param>
+ <param name="filter">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> to add.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/>.</returns>
+ </member>
+ <member name="M:Microsoft.Extensions.DependencyInjection.PageConventionCollectionExtensions.AllowAnonymousToPage(Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection,System.String)">
+ <summary>
+ Adds a <see cref="T:Microsoft.AspNetCore.Mvc.Authorization.AllowAnonymousFilter"/> to the page with the specified name.
+ </summary>
+ <param name="conventions">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/> to configure.</param>
+ <param name="pageName">The page name.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/>.</returns>
+ </member>
+ <member name="M:Microsoft.Extensions.DependencyInjection.PageConventionCollectionExtensions.AllowAnonymousToFolder(Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection,System.String)">
+ <summary>
+ Adds a <see cref="T:Microsoft.AspNetCore.Mvc.Authorization.AllowAnonymousFilter"/> to all pages under the specified folder.
+ </summary>
+ <param name="conventions">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/> to configure.</param>
+ <param name="folderPath">The folder path.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/>.</returns>
+ </member>
+ <member name="M:Microsoft.Extensions.DependencyInjection.PageConventionCollectionExtensions.AuthorizePage(Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection,System.String,System.String)">
+ <summary>
+ Adds a <see cref="T:Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter"/> with the specified policy to the page with the specified name.
+ </summary>
+ <param name="conventions">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/> to configure.</param>
+ <param name="pageName">The page name.</param>
+ <param name="policy">The authorization policy.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/>.</returns>
+ </member>
+ <member name="M:Microsoft.Extensions.DependencyInjection.PageConventionCollectionExtensions.AuthorizePage(Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection,System.String)">
+ <summary>
+ Adds a <see cref="T:Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter"/> to the page with the specified name.
+ </summary>
+ <param name="conventions">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/> to configure.</param>
+ <param name="pageName">The page name.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/>.</returns>
+ </member>
+ <member name="M:Microsoft.Extensions.DependencyInjection.PageConventionCollectionExtensions.AuthorizeFolder(Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection,System.String,System.String)">
+ <summary>
+ Adds a <see cref="T:Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter"/> with the specified policy to all pages under the specified folder.
+ </summary>
+ <param name="conventions">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/> to configure.</param>
+ <param name="folderPath">The folder path.</param>
+ <param name="policy">The authorization policy.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/>.</returns>
+ </member>
+ <member name="M:Microsoft.Extensions.DependencyInjection.PageConventionCollectionExtensions.AuthorizeFolder(Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection,System.String)">
+ <summary>
+ Adds a <see cref="T:Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter"/> to all pages under the specified folder.
+ </summary>
+ <param name="conventions">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/> to configure.</param>
+ <param name="folderPath">The folder path.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/>.</returns>
+ </member>
+ <member name="M:Microsoft.Extensions.DependencyInjection.PageConventionCollectionExtensions.AddPageRoute(Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection,System.String,System.String)">
+ <summary>
+ Adds the specified <paramref name="route"/> to the page at the specified <paramref name="pageName"/>.
+ <para>
+ The page can be routed via <paramref name="route"/> in addition to the default set of path based routes.
+ All links generated for this page will use the specified route.
+ </para>
+ </summary>
+ <param name="conventions">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/>.</param>
+ <param name="pageName">The page name.</param>
+ <param name="route">The route to associate with the page.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/>.</returns>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelConvention">
+ <summary>
+ Allows customization of the of the <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/>.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelConvention.Apply(Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel)">
+ <summary>
+ Called to apply the convention to the <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/>.
+ </summary>
+ <param name="model">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/>.</param>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider">
+ <summary>
+ Builds or modifies an <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModelProviderContext"/> for Razor Page discovery.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider.Order">
+ <summary>
+ Gets the order value for determining the order of execution of providers. Providers execute in
+ ascending numeric value of the <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider.Order"/> property.
+ </summary>
+ <remarks>
+ <para>
+ Providers are executed in an ordering determined by an ascending sort of the <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider.Order"/> property.
+ A provider with a lower numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider.Order"/> will have its
+ <see cref="M:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModelProviderContext)"/> called before that of a provider with a higher numeric value of
+ <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider.Order"/>. The <see cref="M:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModelProviderContext)"/> method is called in the reverse ordering after
+ all calls to <see cref="M:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModelProviderContext)"/>. A provider with a lower numeric value of
+ <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider.Order"/> will have its <see cref="M:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModelProviderContext)"/> method called after that of a provider
+ with a higher numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider.Order"/>.
+ </para>
+ <para>
+ If two providers have the same numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider.Order"/>, then their relative execution order
+ is undefined.
+ </para>
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModelProviderContext)">
+ <summary>
+ Executed for the first pass of building <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/> instances. See <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider.Order"/>.
+ </summary>
+ <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModelProviderContext"/>.</param>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModelProviderContext)">
+ <summary>
+ Executed for the second pass of building <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/> instances. See <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider.Order"/>.
+ </summary>
+ <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModelProviderContext"/>.</param>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageConvention">
+ <summary>
+ Common interface for route and application model conventions that apply to Razor Pages.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelConvention">
+ <summary>
+ Allows customization of the of the <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel"/>.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelConvention.Apply(Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel)">
+ <summary>
+ Called to apply the convention to the <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel"/>.
+ </summary>
+ <param name="model">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel"/>.</param>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider">
+ <summary>
+ Builds or modifies an <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModelProviderContext"/> for Razor Page routing.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider.Order">
+ <summary>
+ Gets the order value for determining the order of execution of providers. Providers execute in
+ ascending numeric value of the <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider.Order"/> property.
+ </summary>
+ <remarks>
+ <para>
+ Providers are executed in an ordering determined by an ascending sort of the <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider.Order"/> property.
+ A provider with a lower numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider.Order"/> will have its
+ <see cref="M:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModelProviderContext)"/> called before that of a provider with a higher numeric value of
+ <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider.Order"/>. The <see cref="M:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModelProviderContext)"/> method is called in the reverse ordering after
+ all calls to <see cref="M:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModelProviderContext)"/>. A provider with a lower numeric value of
+ <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider.Order"/> will have its <see cref="M:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModelProviderContext)"/> method called after that of a provider
+ with a higher numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider.Order"/>.
+ </para>
+ <para>
+ If two providers have the same numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider.Order"/>, then their relative execution order
+ is undefined.
+ </para>
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModelProviderContext)">
+ <summary>
+ Executed for the first pass of building <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel"/> instances. See <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider.Order"/>.
+ </summary>
+ <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModelProviderContext"/>.</param>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModelProviderContext)">
+ <summary>
+ Executed for the second pass of building <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel"/> instances. See <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider.Order"/>.
+ </summary>
+ <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModelProviderContext"/>.</param>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel">
+ <summary>
+ Application model component for RazorPages.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel.#ctor(Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor,System.Reflection.TypeInfo,System.Collections.Generic.IReadOnlyList{System.Object})">
+ <summary>
+ Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/>.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel.#ctor(Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel)">
+ <summary>
+ A copy constructor for <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/>.
+ </summary>
+ <param name="other">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/> to copy from.</param>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel.ActionDescriptor">
+ <summary>
+ Gets the <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel.RelativePath">
+ <summary>
+ Gets the application root relative path for the page.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel.ViewEnginePath">
+ <summary>
+ Gets the path relative to the base path for page discovery.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel.RouteTemplate">
+ <summary>
+ Gets the route template for the page.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel.Filters">
+ <summary>
+ Gets the applicable <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> instances.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel.Properties">
+ <summary>
+ Stores arbitrary metadata properties associated with the <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel.PageType">
+ <summary>
+ Gets or sets the <see cref="T:System.Reflection.TypeInfo"/> of the Razor page.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel.ModelType">
+ <summary>
+ Gets or sets the <see cref="T:System.Reflection.TypeInfo"/> of the Razor page model.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel.HandlerType">
+ <summary>
+ Gets the <see cref="T:System.Reflection.TypeInfo"/> of the handler.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel.HandlerTypeAttributes">
+ <summary>
+ Gets the sequence of attributes declared on <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel.HandlerType"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel.HandlerMethods">
+ <summary>
+ Gets the sequence of <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel"/> instances.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel.HandlerProperties">
+ <summary>
+ Gets the sequence of <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel"/> instances on <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel"/>.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModelProviderContext">
+ <summary>
+ A context object for <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelProvider"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModelProviderContext.ActionDescriptor">
+ <summary>
+ Gets the <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModelProviderContext.PageType">
+ <summary>
+ Gets the page <see cref="T:System.Reflection.TypeInfo"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModelProviderContext.PageApplicationModel">
+ <summary>
+ Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/>.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/> class that is empty.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection.#ctor(System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.ApplicationModels.IPageConvention})">
+ <summary>
+ Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection"/> class
+ as a wrapper for the specified list.
+ </summary>
+ <param name="conventions">The list that is wrapped by the new collection.</param>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection.AddPageApplicationModelConvention(System.String,System.Action{Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel})">
+ <summary>
+ Creates and adds an <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelConvention"/> that invokes an action on the
+ <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/> for the page with the speciifed name.
+ </summary>
+ <param name="pageName">The name of the page e.g. <c>/Users/List</c></param>
+ <param name="action">The <see cref="T:System.Action"/>.</param>
+ <returns>The added <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelConvention"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection.AddFolderApplicationModelConvention(System.String,System.Action{Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel})">
+ <summary>
+ Creates and adds an <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelConvention"/> that invokes an action on
+ <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/> instances for all page under the specified folder.
+ </summary>
+ <param name="folderPath">The path of the folder relative to the Razor Pages root. e.g. <c>/Users/</c></param>
+ <param name="action">The <see cref="T:System.Action"/>.</param>
+ <returns>The added <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelConvention"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection.AddPageRouteModelConvention(System.String,System.Action{Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel})">
+ <summary>
+ Creates and adds an <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelConvention"/> that invokes an action on the
+ <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel"/> for the page with the speciifed name.
+ </summary>
+ <param name="pageName">The name of the page e.g. <c>/Users/List</c></param>
+ <param name="action">The <see cref="T:System.Action"/>.</param>
+ <returns>The added <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelConvention"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection.AddFolderRouteModelConvention(System.String,System.Action{Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel})">
+ <summary>
+ Creates and adds an <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelConvention"/> that invokes an action on
+ <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel"/> instances for all page under the specified folder.
+ </summary>
+ <param name="folderPath">The path of the folder relative to the Razor Pages root. e.g. <c>/Users/</c></param>
+ <param name="action">The <see cref="T:System.Action"/>.</param>
+ <returns>The added <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelConvention"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection.RemoveType``1">
+ <summary>
+ Removes all <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageConvention"/> instances of the specified type.
+ </summary>
+ <typeparam name="TPageConvention">The type to remove.</typeparam>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.PageConventionCollection.RemoveType(System.Type)">
+ <summary>
+ Removes all <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageConvention"/> instances of the specified type.
+ </summary>
+ <param name="pageConventionType">The type to remove.</param>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel">
+ <summary>
+ Represents a handler in a <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/>.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel.#ctor(System.Reflection.MethodInfo,System.Collections.Generic.IReadOnlyList{System.Object})">
+ <summary>
+ Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel"/>.
+ </summary>
+ <param name="handlerMethod">The <see cref="T:System.Reflection.MethodInfo"/> for the handler.</param>
+ <param name="attributes">Any attributes annotated on the handler method.</param>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel.#ctor(Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel)">
+ <summary>
+ Creats a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel"/> from a given <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel"/>.
+ </summary>
+ <param name="other">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel"/> which needs to be copied.</param>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel.MethodInfo">
+ <summary>
+ Gets the <see cref="T:System.Reflection.MethodInfo"/> for the handler.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel.HttpMethod">
+ <summary>
+ Gets or sets the HTTP method supported by this handler.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel.HandlerName">
+ <summary>
+ Gets or sets the handler method name.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel.Name">
+ <summary>
+ Gets or sets a descriptive name for the handler.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel.Parameters">
+ <summary>
+ Gets the sequence of <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageParameterModel"/> instances.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel.Page">
+ <summary>
+ Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel.Attributes">
+ <inheritdoc />
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel.Properties">
+ <inheritdoc />
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel">
+ <summary>
+ Represents a property in a <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/>.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel.#ctor(System.Reflection.PropertyInfo,System.Collections.Generic.IReadOnlyList{System.Object})">
+ <summary>
+ Creates a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel"/>.
+ </summary>
+ <param name="propertyInfo">The <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel.PropertyInfo"/> for the underlying property.</param>
+ <param name="attributes">Any attributes which are annotated on the property.</param>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel.#ctor(Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel)">
+ <summary>
+ Creats a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel"/> from a given <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel"/>.
+ </summary>
+ <param name="other">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel"/> which needs to be copied.</param>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel.Page">
+ <summary>
+ Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/> this <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel"/> is associated with.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel.Attributes">
+ <summary>
+ Gets any attributes which are annotated on the property.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel.Properties">
+ <inheritdoc />
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel.BindingInfo">
+ <summary>
+ Gets or sets the <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel.BindingInfo"/> associated with this model.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel.PropertyInfo">
+ <summary>
+ Gets the underlying <see cref="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel.PropertyInfo"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel.PropertyName">
+ <summary>
+ Gets or sets the name of the property represented by this model.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel">
+ <summary>
+ A model component for routing RazorPages.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel.#ctor(System.String,System.String)">
+ <summary>
+ Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel"/>.
+ </summary>
+ <param name="relativePath">The application relative path of the page.</param>
+ <param name="viewEnginePath">The path relative to the base path for page discovery.</param>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel.#ctor(Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel)">
+ <summary>
+ A copy constructor for <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel"/>.
+ </summary>
+ <param name="other">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel"/> to copy from.</param>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel.RelativePath">
+ <summary>
+ Gets the application root relative path for the page.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel.ViewEnginePath">
+ <summary>
+ Gets the path relative to the base path for page discovery.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel.Properties">
+ <summary>
+ Stores arbitrary metadata properties associated with the <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel.Selectors">
+ <summary>
+ Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.SelectorModel"/> instances.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModelProviderContext">
+ <summary>
+ A context object for <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageRouteModelProvider"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModelProviderContext.RouteModels">
+ <summary>
+ Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageRouteModel"/> instances.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor">
+ <summary>
+ A <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor"/> for a compiled Razor page.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor.#ctor">
+ <summary>
+ Initializes an empty <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor"/>.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor.#ctor(Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor)">
+ <summary>
+ Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor"/>
+ from the specified <paramref name="actionDescriptor"/> instance.
+ </summary>
+ <param name="actionDescriptor">The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor"/>.</param>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor.HandlerMethods">
+ <summary>
+ Gets the list of handler methods for the page.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor.HandlerTypeInfo">
+ <summary>
+ Gets or sets the <see cref="T:System.Reflection.TypeInfo"/> of the type that defines handler methods for the page. This can be
+ the same as <see cref="P:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor.PageTypeInfo"/> and <see cref="P:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor.ModelTypeInfo"/> if the page does not have an
+ explicit model type defined.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor.ModelTypeInfo">
+ <summary>
+ Gets or sets the <see cref="T:System.Reflection.TypeInfo"/> of the model.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor.PageTypeInfo">
+ <summary>
+ Gets or sets the <see cref="T:System.Reflection.TypeInfo"/> of the page.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.DefaultPageActivatorProvider">
+ <summary>
+ <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.IPageActivatorProvider"/> that uses type activation to create Pages.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.DefaultPageActivatorProvider.CreateActivator(Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor)">
+ <inheritdoc />
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.DefaultPageModelActivatorProvider">
+ <summary>
+ <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.IPageActivatorProvider"/> that uses type activation to create Razor Page instances.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.DefaultPageModelActivatorProvider.CreateActivator(Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor)">
+ <inheritdoc />
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.IPageLoader">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor"/> from a <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor"/>.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.IPageLoader.Load(Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor)">
+ <summary>
+ Produces a <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor"/> given a <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor"/>.
+ </summary>
+ <param name="actionDescriptor">The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor"/>.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor"/>.</returns>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.PageModelAttribute">
+ <summary>
+ An attribute for base classes for page models. Applying this attribute to a type
+ marks all subclasses of that type as page model types.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.PageResultExecutor">
+ <summary>
+ Executes a Razor Page.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.PageResultExecutor.#ctor(Microsoft.AspNetCore.Mvc.Internal.IHttpResponseStreamWriterFactory,Microsoft.AspNetCore.Mvc.ViewEngines.ICompositeViewEngine,Microsoft.AspNetCore.Mvc.Razor.IRazorViewEngine,Microsoft.AspNetCore.Mvc.Razor.IRazorPageActivator,System.Diagnostics.DiagnosticSource,System.Text.Encodings.Web.HtmlEncoder)">
+ <summary>
+ Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.PageResultExecutor"/>.
+ </summary>
+ <param name="writerFactory">The <see cref="T:Microsoft.AspNetCore.Mvc.Internal.IHttpResponseStreamWriterFactory"/>.</param>
+ <param name="compositeViewEngine">The <see cref="T:Microsoft.AspNetCore.Mvc.ViewEngines.ICompositeViewEngine"/>.</param>
+ <param name="razorViewEngine">The <see cref="T:Microsoft.AspNetCore.Mvc.Razor.IRazorViewEngine"/>.</param>
+ <param name="razorPageActivator">The <see cref="T:Microsoft.AspNetCore.Mvc.Razor.IRazorPageActivator"/>.</param>
+ <param name="diagnosticSource">The <see cref="T:System.Diagnostics.DiagnosticSource"/>.</param>
+ <param name="htmlEncoder">The <see cref="T:System.Text.Encodings.Web.HtmlEncoder"/>.</param>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.PageResultExecutor.ExecuteAsync(Microsoft.AspNetCore.Mvc.RazorPages.PageContext,Microsoft.AspNetCore.Mvc.RazorPages.PageResult)">
+ <summary>
+ Executes a Razor Page asynchronously.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.Internal.CompiledPageActionDescriptorBuilder">
+ <summary>
+ Constructs a <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor"/> from an <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/>.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Internal.CompiledPageActionDescriptorBuilder.Build(Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel,Microsoft.AspNetCore.Mvc.Filters.FilterCollection)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor"/> from the specified <paramref name="applicationModel"/>.
+ </summary>
+ <param name="applicationModel">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/>.</param>
+ <param name="globalFilters">Global filters to apply to the page.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Internal.CompiledPageRouteModelProvider.GetViewDescriptors(Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartManager)">
+ <summary>
+ Gets the sequence of <see cref="T:Microsoft.AspNetCore.Mvc.Razor.Compilation.CompiledViewDescriptor"/> from <paramref name="applicationManager"/>.
+ </summary>
+ <param name="applicationManager">The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartManager"/>s</param>
+ <returns>The sequence of <see cref="T:Microsoft.AspNetCore.Mvc.Razor.Compilation.CompiledViewDescriptor"/>.</returns>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.Internal.DefaultPageApplicationModelProvider.Order">
+ <inheritdoc />
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Internal.DefaultPageApplicationModelProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModelProviderContext)">
+ <inheritdoc />
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Internal.DefaultPageApplicationModelProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModelProviderContext)">
+ <inheritdoc />
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Internal.DefaultPageApplicationModelProvider.CreateModel(Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor,System.Reflection.TypeInfo)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/> for the given <paramref name="pageTypeInfo"/>.
+ </summary>
+ <param name="actionDescriptor">The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor"/>.</param>
+ <param name="pageTypeInfo">The <see cref="T:System.Reflection.TypeInfo"/>.</param>
+ <returns>A <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel"/> for the given <see cref="T:System.Reflection.TypeInfo"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Internal.DefaultPageApplicationModelProvider.CreateHandlerModel(System.Reflection.MethodInfo)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel"/> for the specified <paramref name="method"/>.s
+ </summary>
+ <param name="method">The <see cref="T:System.Reflection.MethodInfo"/>.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageHandlerModel"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Internal.DefaultPageApplicationModelProvider.CreateParameterModel(System.Reflection.ParameterInfo)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageParameterModel"/> for the specified <paramref name="parameter"/>.
+ </summary>
+ <param name="parameter">The <see cref="T:System.Reflection.ParameterInfo"/>.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PageParameterModel"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Internal.DefaultPageApplicationModelProvider.CreatePropertyModel(System.Reflection.PropertyInfo)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel"/> for the <paramref name="property"/>.
+ </summary>
+ <param name="property">The <see cref="T:System.Reflection.PropertyInfo"/>.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.PagePropertyModel"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Internal.DefaultPageApplicationModelProvider.IsHandler(System.Reflection.MethodInfo)">
+ <summary>
+ Determines if the specified <paramref name="methodInfo"/> is a handler.
+ </summary>
+ <param name="methodInfo">The <see cref="T:System.Reflection.MethodInfo"/>.</param>
+ <returns><c>true</c> if the <paramref name="methodInfo"/> is a handler. Otherwise <c>false</c>.</returns>
+ <remarks>
+ Override this method to provide custom logic to determine which methods are considered handlers.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync">
+ <remarks>
+ <see cref="T:Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker"/> for details on what the variables in this method represent.
+ </remarks>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvokerCacheEntry.ReleasePage">
+ <summary>
+ The action invoked to release a page. This may be <c>null</c>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvokerCacheEntry.ReleaseModel">
+ <summary>
+ The delegate invoked to release a model. This may be <c>null</c>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvokerCacheEntry.PropertyBinder">
+ <summary>
+ The delegate invoked to bind either the handler type (page or model).
+ This may be <c>null</c>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvokerCacheEntry.ViewStartFactories">
+ <summary>
+ Gets the applicable ViewStart pages.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.IPageActivatorProvider">
+ <summary>
+ Provides methods to create a Razor page.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.IPageActivatorProvider.CreateActivator(Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor)">
+ <summary>
+ Creates a Razor page activator.
+ </summary>
+ <param name="descriptor">The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor"/>.</param>
+ <returns>The delegate used to activate the page.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.IPageActivatorProvider.CreateReleaser(Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor)">
+ <summary>
+ Releases a Razor page.
+ </summary>
+ <param name="descriptor">The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor"/>.</param>
+ <returns>The delegate used to dispose the activated page.</returns>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.IPageFactoryProvider">
+ <summary>
+ Provides methods for creation and disposal of Razor pages.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.IPageFactoryProvider.CreatePageFactory(Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor)">
+ <summary>
+ Creates a factory for producing Razor pages for the specified <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageContext"/>.
+ </summary>
+ <param name="descriptor">The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor"/>.</param>
+ <returns>The Razor page factory.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.IPageFactoryProvider.CreatePageDisposer(Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor)">
+ <summary>
+ Releases a Razor page.
+ </summary>
+ <param name="descriptor">The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor"/>.</param>
+ <returns>The delegate used to release the created page.</returns>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.IPageModelActivatorProvider">
+ <summary>
+ Provides methods to create a Razor Page model.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.IPageModelActivatorProvider.CreateActivator(Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor)">
+ <summary>
+ Creates a Razor Page model activator.
+ </summary>
+ <param name="descriptor">The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor"/>.</param>
+ <returns>The delegate used to activate the page model.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.IPageModelActivatorProvider.CreateReleaser(Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor)">
+ <summary>
+ Releases a Razor Page model.
+ </summary>
+ <param name="descriptor">The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor"/>.</param>
+ <returns>The delegate used to dispose the activated Razor Page model.</returns>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.IPageModelFactoryProvider">
+ <summary>
+ Provides methods for creation and disposal of Razor Page models.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.IPageModelFactoryProvider.CreateModelFactory(Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor)">
+ <summary>
+ Creates a factory for producing models for Razor Pages given the specified <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageContext"/>.
+ </summary>
+ <param name="descriptor">The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor"/>.</param>
+ <returns>The Razor Page model factory.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.IPageModelFactoryProvider.CreateModelDisposer(Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor)">
+ <summary>
+ Releases a Razor Page model.
+ </summary>
+ <param name="descriptor">The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor"/>.</param>
+ <returns>The delegate used to release the created Razor Page model.</returns>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.NonHandlerAttribute">
+ <summary>
+ Specifies that the targeted method is not a page handler method.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.Page">
+ <summary>
+ A base class for a Razor page.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor.#ctor">
+ <summary>
+ Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor"/>.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor.#ctor(Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor)">
+ <summary>
+ A copy constructor for <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor"/>.
+ </summary>
+ <param name="other">The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor"/> to copy from.</param>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor.RelativePath">
+ <summary>
+ Gets or sets the application root relative path for the page.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor.ViewEnginePath">
+ <summary>
+ Gets or sets the path relative to the base path for page discovery.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor.DisplayName">
+ <inheritdoc />
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.PageBase">
+ <summary>
+ A base class for a Razor page.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.PageContext">
+ <summary>
+ The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageContext"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.ViewContext">
+ <inheritdoc />
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.HttpContext">
+ <summary>
+ Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Request">
+ <summary>
+ Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpRequest"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Response">
+ <summary>
+ Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpResponse"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RouteData">
+ <summary>
+ Gets the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> for the executing action.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.ModelState">
+ <summary>
+ Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.EnsureRenderedBodyOrSections">
+ <inheritdoc />
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.BeginContext(System.Int32,System.Int32,System.Boolean)">
+ <inheritdoc />
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.EndContext">
+ <inheritdoc />
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Challenge">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ChallengeResult"/>.
+ </summary>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ChallengeResult"/> for the response.</returns>
+ <remarks>
+ The behavior of this method depends on the <see cref="T:Microsoft.AspNetCore.Authentication.IAuthenticationService"/> in use.
+ <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status401Unauthorized"/> and <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/>
+ are among likely status results.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Challenge(System.String[])">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ChallengeResult"/> with the specified authentication schemes.
+ </summary>
+ <param name="authenticationSchemes">The authentication schemes to challenge.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ChallengeResult"/> for the response.</returns>
+ <remarks>
+ The behavior of this method depends on the <see cref="T:Microsoft.AspNetCore.Authentication.IAuthenticationService"/> in use.
+ <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status401Unauthorized"/> and <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/>
+ are among likely status results.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Challenge(Microsoft.AspNetCore.Authentication.AuthenticationProperties)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ChallengeResult"/> with the specified <paramref name="properties" />.
+ </summary>
+ <param name="properties"><see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationProperties"/> used to perform the authentication
+ challenge.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ChallengeResult"/> for the response.</returns>
+ <remarks>
+ The behavior of this method depends on the <see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationService"/> in use.
+ <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status401Unauthorized"/> and <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/>
+ are among likely status results.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Challenge(Microsoft.AspNetCore.Authentication.AuthenticationProperties,System.String[])">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ChallengeResult"/> with the specified specified authentication schemes and
+ <paramref name="properties" />.
+ </summary>
+ <param name="properties"><see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationProperties"/> used to perform the authentication
+ challenge.</param>
+ <param name="authenticationSchemes">The authentication schemes to challenge.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ChallengeResult"/> for the response.</returns>
+ <remarks>
+ The behavior of this method depends on the <see cref="T:Microsoft.AspNetCore.Authentication.IAuthenticationService"/> in use.
+ <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status401Unauthorized"/> and <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/>
+ are among likely status results.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Content(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ContentResult"/> object with <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/> by specifying a
+ <paramref name="content"/> string.
+ </summary>
+ <param name="content">The content to write to the response.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ContentResult"/> object for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Content(System.String,System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ContentResult"/> object with <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/> by specifying a
+ <paramref name="content"/> string and a content type.
+ </summary>
+ <param name="content">The content to write to the response.</param>
+ <param name="contentType">The content type (MIME type).</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ContentResult"/> object for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Content(System.String,System.String,System.Text.Encoding)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ContentResult"/> object with <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/> by specifying a
+ <paramref name="content"/> string, a <paramref name="contentType"/>, and <paramref name="contentEncoding"/>.
+ </summary>
+ <param name="content">The content to write to the response.</param>
+ <param name="contentType">The content type (MIME type).</param>
+ <param name="contentEncoding">The content encoding.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ContentResult"/> object for the response.</returns>
+ <remarks>
+ If encoding is provided by both the 'charset' and the <paramref name="contentEncoding"/> parameters, then
+ the <paramref name="contentEncoding"/> parameter is chosen as the final encoding.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Content(System.String,Microsoft.Net.Http.Headers.MediaTypeHeaderValue)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ContentResult"/> object with <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/> by specifying a
+ <paramref name="content"/> string and a <paramref name="contentType"/>.
+ </summary>
+ <param name="content">The content to write to the response.</param>
+ <param name="contentType">The content type (MIME type).</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ContentResult"/> object for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Forbid">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ForbidResult"/> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/> by default).
+ </summary>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ForbidResult"/> for the response.</returns>
+ <remarks>
+ Some authentication schemes, such as cookies, will convert <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/> to
+ a redirect to show a login page.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Forbid(System.String[])">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ForbidResult"/> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/> by default) with the
+ specified authentication schemes.
+ </summary>
+ <param name="authenticationSchemes">The authentication schemes to challenge.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ForbidResult"/> for the response.</returns>
+ <remarks>
+ Some authentication schemes, such as cookies, will convert <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/> to
+ a redirect to show a login page.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Forbid(Microsoft.AspNetCore.Authentication.AuthenticationProperties)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ForbidResult"/> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/> by default) with the
+ specified <paramref name="properties" />.
+ </summary>
+ <param name="properties"><see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationProperties"/> used to perform the authentication
+ challenge.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ForbidResult"/> for the response.</returns>
+ <remarks>
+ Some authentication schemes, such as cookies, will convert <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/> to
+ a redirect to show a login page.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Forbid(Microsoft.AspNetCore.Authentication.AuthenticationProperties,System.String[])">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ForbidResult"/> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/> by default) with the
+ specified specified authentication schemes and <paramref name="properties" />.
+ </summary>
+ <param name="properties"><see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationProperties"/> used to perform the authentication
+ challenge.</param>
+ <param name="authenticationSchemes">The authentication schemes to challenge.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ForbidResult"/> for the response.</returns>
+ <remarks>
+ Some authentication schemes, such as cookies, will convert <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/> to
+ a redirect to show a login page.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.File(System.Byte[],System.String)">
+ <summary>
+ Returns a file with the specified <paramref name="fileContents" /> as content
+ (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/>) and the specified <paramref name="contentType" /> as the Content-Type.
+ </summary>
+ <param name="fileContents">The file contents.</param>
+ <param name="contentType">The Content-Type of the file.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.FileContentResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.File(System.Byte[],System.String,System.String)">
+ <summary>
+ Returns a file with the specified <paramref name="fileContents" /> as content (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/>), the
+ specified <paramref name="contentType" /> as the Content-Type and the
+ specified <paramref name="fileDownloadName" /> as the suggested file name.
+ </summary>
+ <param name="fileContents">The file contents.</param>
+ <param name="contentType">The Content-Type of the file.</param>
+ <param name="fileDownloadName">The suggested file name.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.FileContentResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.File(System.IO.Stream,System.String)">
+ <summary>
+ Returns a file in the specified <paramref name="fileStream" /> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/>)
+ with the specified <paramref name="contentType" /> as the Content-Type.
+ </summary>
+ <param name="fileStream">The <see cref="T:System.IO.Stream"/> with the contents of the file.</param>
+ <param name="contentType">The Content-Type of the file.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.FileStreamResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.File(System.IO.Stream,System.String,System.String)">
+ <summary>
+ Returns a file in the specified <paramref name="fileStream" /> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/>) with the
+ specified <paramref name="contentType" /> as the Content-Type and the
+ specified <paramref name="fileDownloadName" /> as the suggested file name.
+ </summary>
+ <param name="fileStream">The <see cref="T:System.IO.Stream"/> with the contents of the file.</param>
+ <param name="contentType">The Content-Type of the file.</param>
+ <param name="fileDownloadName">The suggested file name.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.FileStreamResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.File(System.String,System.String)">
+ <summary>
+ Returns the file specified by <paramref name="virtualPath" /> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/>) with the
+ specified <paramref name="contentType" /> as the Content-Type.
+ </summary>
+ <param name="virtualPath">The virtual path of the file to be returned.</param>
+ <param name="contentType">The Content-Type of the file.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.VirtualFileResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.File(System.String,System.String,System.String)">
+ <summary>
+ Returns the file specified by <paramref name="virtualPath" /> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/>) with the
+ specified <paramref name="contentType" /> as the Content-Type and the
+ specified <paramref name="fileDownloadName" /> as the suggested file name.
+ </summary>
+ <param name="virtualPath">The virtual path of the file to be returned.</param>
+ <param name="contentType">The Content-Type of the file.</param>
+ <param name="fileDownloadName">The suggested file name.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.VirtualFileResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.PhysicalFile(System.String,System.String)">
+ <summary>
+ Returns the file specified by <paramref name="physicalPath" /> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/>) with the
+ specified <paramref name="contentType" /> as the Content-Type.
+ </summary>
+ <param name="physicalPath">The physical path of the file to be returned.</param>
+ <param name="contentType">The Content-Type of the file.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.PhysicalFileResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.PhysicalFile(System.String,System.String,System.String)">
+ <summary>
+ Returns the file specified by <paramref name="physicalPath" /> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/>) with the
+ specified <paramref name="contentType" /> as the Content-Type and the
+ specified <paramref name="fileDownloadName" /> as the suggested file name.
+ </summary>
+ <param name="physicalPath">The physical path of the file to be returned.</param>
+ <param name="contentType">The Content-Type of the file.</param>
+ <param name="fileDownloadName">The suggested file name.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.PhysicalFileResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.LocalRedirect(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.LocalRedirectResult"/> object that redirects
+ (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified local <paramref name="localUrl"/>.
+ </summary>
+ <param name="localUrl">The local URL to redirect to.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.LocalRedirectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.LocalRedirectPermanent(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.LocalRedirectResult"/> object with <see cref="P:Microsoft.AspNetCore.Mvc.LocalRedirectResult.Permanent"/> set to
+ true (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) using the specified <paramref name="localUrl"/>.
+ </summary>
+ <param name="localUrl">The local URL to redirect to.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.LocalRedirectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.LocalRedirectPreserveMethod(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.LocalRedirectResult"/> object with <see cref="P:Microsoft.AspNetCore.Mvc.LocalRedirectResult.Permanent"/> set to
+ false and <see cref="P:Microsoft.AspNetCore.Mvc.LocalRedirectResult.PreserveMethod"/> set to true
+ (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status307TemporaryRedirect"/>) using the specified <paramref name="localUrl"/>.
+ </summary>
+ <param name="localUrl">The local URL to redirect to.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.LocalRedirectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.LocalRedirectPermanentPreserveMethod(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.LocalRedirectResult"/> object with <see cref="P:Microsoft.AspNetCore.Mvc.LocalRedirectResult.Permanent"/> set to
+ true and <see cref="P:Microsoft.AspNetCore.Mvc.LocalRedirectResult.PreserveMethod"/> set to true
+ (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status308PermanentRedirect"/>) using the specified <paramref name="localUrl"/>.
+ </summary>
+ <param name="localUrl">The local URL to redirect to.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.LocalRedirectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.NotFound">
+ <summary>
+ Creates an <see cref="T:Microsoft.AspNetCore.Mvc.NotFoundResult"/> that produces a <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status404NotFound"/> response.
+ </summary>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.NotFoundResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.NotFound(System.Object)">
+ <summary>
+ Creates an <see cref="T:Microsoft.AspNetCore.Mvc.NotFoundObjectResult"/> that produces a <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status404NotFound"/> response.
+ </summary>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.NotFoundObjectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Page">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageResult"/> object that renders this page as a view to the response.
+ </summary>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageResult"/> object for the response.</returns>
+ <remarks>
+ Returning a <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageResult"/> from a page handler method is equivalent to returning void.
+ The view associated with the page will be executed.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Redirect(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.RedirectResult"/> object that redirects to the specified <paramref name="url"/>.
+ </summary>
+ <param name="url">The URL to redirect to.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectPermanent(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.RedirectResult"/> object with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectResult.Permanent"/> set to true
+ (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) using the specified <paramref name="url"/>.
+ </summary>
+ <param name="url">The URL to redirect to.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectPreserveMethod(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.RedirectResult"/> object with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectResult.Permanent"/> set to false
+ and <see cref="P:Microsoft.AspNetCore.Mvc.RedirectResult.PreserveMethod"/> set to true (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status307TemporaryRedirect"/>)
+ using the specified <paramref name="url"/>.
+ </summary>
+ <param name="url">The URL to redirect to.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectPermanentPreserveMethod(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.RedirectResult"/> object with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectResult.Permanent"/> set to true
+ and <see cref="P:Microsoft.AspNetCore.Mvc.RedirectResult.PreserveMethod"/> set to true (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status308PermanentRedirect"/>)
+ using the specified <paramref name="url"/>.
+ </summary>
+ <param name="url">The URL to redirect to.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToAction(System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified action using the <paramref name="actionName"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToAction(System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified action using the
+ <paramref name="actionName"/> and <paramref name="routeValues"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToAction(System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified action using the
+ <paramref name="actionName"/> and the <paramref name="controllerName"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToAction(System.String,System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified action using the specified
+ <paramref name="actionName"/>, <paramref name="controllerName"/>, and <paramref name="routeValues"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToAction(System.String,System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified action using the specified
+ <paramref name="actionName"/>, <paramref name="controllerName"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToAction(System.String,System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified action using the specified <paramref name="actionName"/>,
+ <paramref name="controllerName"/>, <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToActionPreserveMethod(System.String,System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status307TemporaryRedirect"/>) to the specified action with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.Permanent"/> set to false and <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.PreserveMethod"/>
+ set to true, using the specified <paramref name="actionName"/>, <paramref name="controllerName"/>,
+ <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">The route data to use for generating the URL.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToActionPermanent(System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified action with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.Permanent"/> set to true using the specified <paramref name="actionName"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToActionPermanent(System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified action with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.Permanent"/> set to true using the specified <paramref name="actionName"/>
+ and <paramref name="routeValues"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToActionPermanent(System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified action with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.Permanent"/> set to true using the specified <paramref name="actionName"/>
+ and <paramref name="controllerName"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToActionPermanent(System.String,System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified action with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.Permanent"/> set to true using the specified <paramref name="actionName"/>,
+ <paramref name="controllerName"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToActionPermanent(System.String,System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified action with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.Permanent"/> set to true using the specified <paramref name="actionName"/>,
+ <paramref name="controllerName"/>, and <paramref name="routeValues"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToActionPermanent(System.String,System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified action with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.Permanent"/> set to true using the specified <paramref name="actionName"/>,
+ <paramref name="controllerName"/>, <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToActionPermanentPreserveMethod(System.String,System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status308PermanentRedirect"/>) to the specified action with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.Permanent"/> set to true and <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.PreserveMethod"/>
+ set to true, using the specified <paramref name="actionName"/>, <paramref name="controllerName"/>,
+ <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">The route data to use for generating the URL.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToRoute(System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified route using the specified <paramref name="routeName"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToRoute(System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified route using the specified <paramref name="routeValues"/>.
+ </summary>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToRoute(System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified route using the specified
+ <paramref name="routeName"/> and <paramref name="routeValues"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToRoute(System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified route using the specified
+ <paramref name="routeName"/> and <paramref name="fragment"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToRoute(System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified route using the specified
+ <paramref name="routeName"/>, <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToRoutePreserveMethod(System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status307TemporaryRedirect"/>) to the specified route with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to false and <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.PreserveMethod"/>
+ set to true, using the specified <paramref name="routeName"/>, <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="routeValues">The route data to use for generating the URL.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToRoutePermanent(System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified route with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to true using the specified <paramref name="routeName"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToRoutePermanent(System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified route with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to true using the specified <paramref name="routeValues"/>.
+ </summary>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToRoutePermanent(System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified route with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to true using the specified <paramref name="routeName"/>
+ and <paramref name="routeValues"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToRoutePermanent(System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified route with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to true using the specified <paramref name="routeName"/>
+ and <paramref name="fragment"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToRoutePermanent(System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified route with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to true using the specified <paramref name="routeName"/>,
+ <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToRoutePermanentPreserveMethod(System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status308PermanentRedirect"/>) to the specified route with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to true and <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.PreserveMethod"/>
+ set to true, using the specified <paramref name="routeName"/>, <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="routeValues">The route data to use for generating the URL.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToPage">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the current page.
+ </summary>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToPage(System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the current page with the specified <paramref name="routeValues"/>.
+ </summary>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToPage(System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified <paramref name="pageName"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToPage(System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="pageHandler"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToPage(System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="routeValues"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToPage(System.String,System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="fragment"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToPage(System.String,System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="routeValues"/> and <paramref name="fragment"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToPagePermanent(System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified <paramref name="pageName"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/> with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToPageResult.Permanent"/> set.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToPagePermanent(System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="routeValues"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/> with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToPageResult.Permanent"/> set.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToPagePermanent(System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="pageHandler"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/> with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToPageResult.Permanent"/> set.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToPagePermanent(System.String,System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="routeValues"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/> with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToPageResult.Permanent"/> set.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToPagePermanent(System.String,System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="fragment"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/> with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToPageResult.Permanent"/> set.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToPagePermanent(System.String,System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="routeValues"/> and <paramref name="fragment"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/> with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToPageResult.Permanent"/> set.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToPagePreserveMethod(System.String,System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status307TemporaryRedirect"/>) to the specified page with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to false and <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.PreserveMethod"/>
+ set to true, using the specified <paramref name="pageName"/>, <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <param name="routeValues">The route data to use for generating the URL.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RedirectToPagePermanentPreserveMethod(System.String,System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status308PermanentRedirect"/>) to the specified route with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to true and <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.PreserveMethod"/>
+ set to true, using the specified <paramref name="pageName"/>, <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <param name="routeValues">The route data to use for generating the URL.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.SignIn(System.Security.Claims.ClaimsPrincipal,System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.SignInResult"/> with the specified authentication scheme.
+ </summary>
+ <param name="principal">The <see cref="T:System.Security.Claims.ClaimsPrincipal"/> containing the user claims.</param>
+ <param name="authenticationScheme">The authentication scheme to use for the sign-in operation.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.SignInResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.SignIn(System.Security.Claims.ClaimsPrincipal,Microsoft.AspNetCore.Authentication.AuthenticationProperties,System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.SignInResult"/> with the specified specified authentication scheme and
+ <paramref name="properties" />.
+ </summary>
+ <param name="principal">The <see cref="T:System.Security.Claims.ClaimsPrincipal"/> containing the user claims.</param>
+ <param name="properties"><see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationProperties"/> used to perform the sign-in operation.</param>
+ <param name="authenticationScheme">The authentication scheme to use for the sign-in operation.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.SignInResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.SignOut(System.String[])">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.SignOutResult"/> with the specified authentication schemes.
+ </summary>
+ <param name="authenticationSchemes">The authentication schemes to use for the sign-out operation.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.SignOutResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.SignOut(Microsoft.AspNetCore.Authentication.AuthenticationProperties,System.String[])">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.SignOutResult"/> with the specified specified authentication schemes and
+ <paramref name="properties" />.
+ </summary>
+ <param name="properties"><see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationProperties"/> used to perform the sign-out operation.</param>
+ <param name="authenticationSchemes">The authentication scheme to use for the sign-out operation.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.SignOutResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.StatusCode(System.Int32)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.StatusCodeResult"/> object by specifying a <paramref name="statusCode"/>.
+ </summary>
+ <param name="statusCode">The status code to set on the response.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.StatusCodeResult"/> object for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.StatusCode(System.Int32,System.Object)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ObjectResult"/> object by specifying a <paramref name="statusCode"/> and <paramref name="value"/>
+ </summary>
+ <param name="statusCode">The status code to set on the response.</param>
+ <param name="value">The value to set on the <see cref="T:Microsoft.AspNetCore.Mvc.ObjectResult"/>.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ObjectResult"/> object for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Unauthorized">
+ <summary>
+ Creates an <see cref="T:Microsoft.AspNetCore.Mvc.UnauthorizedResult"/> that produces an <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status401Unauthorized"/> response.
+ </summary>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.UnauthorizedResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync``1(``0)">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using values from the <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.Page"/>'s current
+ <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/>.
+ </summary>
+ <typeparam name="TModel">The type of the model object.</typeparam>
+ <param name="model">The model instance to update.</param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync``1(``0,System.String)">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using values from the <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.Page"/>'s current
+ <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> and a <paramref name="prefix"/>.
+ </summary>
+ <typeparam name="TModel">The type of the model object.</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="prefix">The prefix to use when looking up values in the current <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/>.
+ </param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync``1(``0,System.String,Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider)">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using the <paramref name="valueProvider"/> and a
+ <paramref name="prefix"/>.
+ </summary>
+ <typeparam name="TModel">The type of the model object.</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="prefix">The prefix to use when looking up values in the <paramref name="valueProvider"/>.
+ </param>
+ <param name="valueProvider">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> used for looking up values.</param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync``1(``0,System.String,System.Linq.Expressions.Expression{System.Func{``0,System.Object}}[])">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using values from the <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.Page"/>'s current
+ <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> and a <paramref name="prefix"/>.
+ </summary>
+ <typeparam name="TModel">The type of the model object.</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="prefix">The prefix to use when looking up values in the current <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/>.
+ </param>
+ <param name="includeExpressions"> <see cref="T:System.Linq.Expressions.Expression"/>(s) which represent top-level properties
+ which need to be included for the current model.</param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync``1(``0,System.String,System.Func{Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,System.Boolean})">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using values from the <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.Page"/>'s current
+ <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> and a <paramref name="prefix"/>.
+ </summary>
+ <typeparam name="TModel">The type of the model object.</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="prefix">The prefix to use when looking up values in the current <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/>.
+ </param>
+ <param name="propertyFilter">A predicate which can be used to filter properties at runtime.</param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync``1(``0,System.String,Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider,System.Linq.Expressions.Expression{System.Func{``0,System.Object}}[])">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using the <paramref name="valueProvider"/> and a
+ <paramref name="prefix"/>.
+ </summary>
+ <typeparam name="TModel">The type of the model object.</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="prefix">The prefix to use when looking up values in the <paramref name="valueProvider"/>.
+ </param>
+ <param name="valueProvider">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> used for looking up values.</param>
+ <param name="includeExpressions"> <see cref="T:System.Linq.Expressions.Expression"/>(s) which represent top-level properties
+ which need to be included for the current model.</param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync``1(``0,System.String,Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider,System.Func{Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,System.Boolean})">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using the <paramref name="valueProvider"/> and a
+ <paramref name="prefix"/>.
+ </summary>
+ <typeparam name="TModel">The type of the model object.</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="prefix">The prefix to use when looking up values in the <paramref name="valueProvider"/>.
+ </param>
+ <param name="valueProvider">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> used for looking up values.</param>
+ <param name="propertyFilter">A predicate which can be used to filter properties at runtime.</param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync(System.Object,System.Type,System.String)">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using values from the <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.Page"/>'s current
+ <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> and a <paramref name="prefix"/>.
+ </summary>
+ <param name="model">The model instance to update.</param>
+ <param name="modelType">The type of model instance to update.</param>
+ <param name="prefix">The prefix to use when looking up values in the current <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/>.
+ </param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync(System.Object,System.Type,System.String,Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider,System.Func{Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,System.Boolean})">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using the <paramref name="valueProvider"/> and a
+ <paramref name="prefix"/>.
+ </summary>
+ <param name="model">The model instance to update.</param>
+ <param name="modelType">The type of model instance to update.</param>
+ <param name="prefix">The prefix to use when looking up values in the <paramref name="valueProvider"/>.
+ </param>
+ <param name="valueProvider">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> used for looking up values.</param>
+ <param name="propertyFilter">A predicate which can be used to filter properties at runtime.</param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryValidateModel(System.Object)">
+ <summary>
+ Validates the specified <paramref name="model"/> instance.
+ </summary>
+ <param name="model">The model to validate.</param>
+ <returns><c>true</c> if the <see cref="P:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.ModelState"/> is valid; <c>false</c> otherwise.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryValidateModel(System.Object,System.String)">
+ <summary>
+ Validates the specified <paramref name="model"/> instance.
+ </summary>
+ <param name="model">The model to validate.</param>
+ <param name="prefix">The key to use when looking up information in <see cref="P:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.ModelState"/>.
+ </param>
+ <returns><c>true</c> if the <see cref="P:Microsoft.AspNetCore.Mvc.RazorPages.PageBase.ModelState"/> is valid;<c>false</c> otherwise.</returns>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.PageContext">
+ <summary>
+ The context associated with the current request for a Razor page.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageContext.#ctor">
+ <summary>
+ Creates an empty <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageContext"/>.
+ </summary>
+ <remarks>
+ The default constructor is provided for unit test purposes only.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageContext.#ctor(Microsoft.AspNetCore.Mvc.ActionContext)">
+ <summary>
+ Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageContext"/>.
+ </summary>
+ <param name="actionContext">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/>.</param>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageContext.ActionDescriptor">
+ <summary>
+ Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageContext.ValueProviderFactories">
+ <summary>
+ Gets or sets the list of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProviderFactory"/> instances for the current request.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageContext.ViewData">
+ <summary>
+ Gets or sets <see cref="T:Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageContext.ViewStartFactories">
+ <summary>
+ Gets or sets the applicable _ViewStart instances.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.PageContextAttribute">
+ <summary>
+ Specifies that a Razor Page model property should be set with the current <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageContext"/> when creating
+ the model instance. The property must have a public set method.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.PageContext">
+ <summary>
+ Gets the <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageContext"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.HttpContext">
+ <summary>
+ Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Request">
+ <summary>
+ Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpRequest"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Response">
+ <summary>
+ Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpResponse"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RouteData">
+ <summary>
+ Gets the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> for the executing action.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.ModelState">
+ <summary>
+ Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.User">
+ <summary>
+ Gets the <see cref="T:System.Security.Claims.ClaimsPrincipal"/> for user associated with the executing action.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TempData">
+ <summary>
+ Gets or sets <see cref="T:Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionary"/> used by <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageResult"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Url">
+ <summary>
+ Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.IUrlHelper"/>.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.ViewData">
+ <summary>
+ Gets or sets <see cref="T:Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary"/> used by <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageResult"/>.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync``1(``0)">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using values from the <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageModel"/>'s current
+ <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/>.
+ </summary>
+ <typeparam name="TModel">The type of the model object.</typeparam>
+ <param name="model">The model instance to update.</param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync``1(``0,System.String)">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using values from the <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageModel"/>'s current
+ <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/>.
+ </summary>
+ <typeparam name="TModel">The type of the model object.</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="name">The model name.</param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync``1(``0,System.String,Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider)">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using the <paramref name="valueProvider"/> and a
+ <paramref name="name"/>.
+ </summary>
+ <typeparam name="TModel">The type of the model object.</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="name">The name to use when looking up values in the <paramref name="valueProvider"/>.
+ </param>
+ <param name="valueProvider">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> used for looking up values.</param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync``1(``0,System.String,System.Linq.Expressions.Expression{System.Func{``0,System.Object}}[])">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using values from the <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageModel"/>'s current
+ <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> and a <paramref name="name"/>.
+ </summary>
+ <typeparam name="TModel">The type of the model object.</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="name">The name to use when looking up values in the current <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/>.
+ </param>
+ <param name="includeExpressions"> <see cref="T:System.Linq.Expressions.Expression"/>(s) which represent top-level properties
+ which need to be included for the current model.</param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync``1(``0,System.String,System.Func{Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,System.Boolean})">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using values from the <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageModel"/>'s current
+ <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> and a <paramref name="name"/>.
+ </summary>
+ <typeparam name="TModel">The type of the model object.</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="name">The name to use when looking up values in the current <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/>.
+ </param>
+ <param name="propertyFilter">A predicate which can be used to filter properties at runtime.</param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync``1(``0,System.String,Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider,System.Linq.Expressions.Expression{System.Func{``0,System.Object}}[])">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using the <paramref name="valueProvider"/> and a
+ <paramref name="name"/>.
+ </summary>
+ <typeparam name="TModel">The type of the model object.</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="name">The name to use when looking up values in the <paramref name="valueProvider"/>.
+ </param>
+ <param name="valueProvider">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> used for looking up values.</param>
+ <param name="includeExpressions"> <see cref="T:System.Linq.Expressions.Expression"/>(s) which represent top-level properties
+ which need to be included for the current model.</param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync``1(``0,System.String,Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider,System.Func{Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,System.Boolean})">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using the <paramref name="valueProvider"/> and a
+ <paramref name="name"/>.
+ </summary>
+ <typeparam name="TModel">The type of the model object.</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="name">The name to use when looking up values in the <paramref name="valueProvider"/>.
+ </param>
+ <param name="valueProvider">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> used for looking up values.</param>
+ <param name="propertyFilter">A predicate which can be used to filter properties at runtime.</param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync(System.Object,System.Type,System.String)">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using values from the <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageModel"/>'s current
+ <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> and a <paramref name="name"/>.
+ </summary>
+ <param name="model">The model instance to update.</param>
+ <param name="modelType">The type of model instance to update.</param>
+ <param name="name">The name to use when looking up values in the current <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/>.
+ </param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync(System.Object,System.Type,System.String,Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider,System.Func{Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,System.Boolean})">
+ <summary>
+ Updates the specified <paramref name="model"/> instance using the <paramref name="valueProvider"/> and a
+ <paramref name="name"/>.
+ </summary>
+ <param name="model">The model instance to update.</param>
+ <param name="modelType">The type of model instance to update.</param>
+ <param name="name">The name to use when looking up values in the <paramref name="valueProvider"/>.
+ </param>
+ <param name="valueProvider">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> used for looking up values.</param>
+ <param name="propertyFilter">A predicate which can be used to filter properties at runtime.</param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns <c>true</c> if the update is successful.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Challenge">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ChallengeResult"/>.
+ </summary>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ChallengeResult"/> for the response.</returns>
+ <remarks>
+ The behavior of this method depends on the <see cref="T:Microsoft.AspNetCore.Authentication.IAuthenticationService"/> in use.
+ <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status401Unauthorized"/> and <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/>
+ are among likely status results.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Challenge(System.String[])">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ChallengeResult"/> with the specified authentication schemes.
+ </summary>
+ <param name="authenticationSchemes">The authentication schemes to challenge.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ChallengeResult"/> for the response.</returns>
+ <remarks>
+ The behavior of this method depends on the <see cref="T:Microsoft.AspNetCore.Authentication.IAuthenticationService"/> in use.
+ <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status401Unauthorized"/> and <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/>
+ are among likely status results.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Challenge(Microsoft.AspNetCore.Authentication.AuthenticationProperties)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ChallengeResult"/> with the specified <paramref name="properties" />.
+ </summary>
+ <param name="properties"><see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationProperties"/> used to perform the authentication
+ challenge.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ChallengeResult"/> for the response.</returns>
+ <remarks>
+ The behavior of this method depends on the <see cref="T:Microsoft.AspNetCore.Authentication.IAuthenticationService"/> in use.
+ <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status401Unauthorized"/> and <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/>
+ are among likely status results.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Challenge(Microsoft.AspNetCore.Authentication.AuthenticationProperties,System.String[])">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ChallengeResult"/> with the specified specified authentication schemes and
+ <paramref name="properties" />.
+ </summary>
+ <param name="properties"><see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationProperties"/> used to perform the authentication
+ challenge.</param>
+ <param name="authenticationSchemes">The authentication schemes to challenge.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ChallengeResult"/> for the response.</returns>
+ <remarks>
+ The behavior of this method depends on the <see cref="T:Microsoft.AspNetCore.Authentication.IAuthenticationService"/> in use.
+ <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status401Unauthorized"/> and <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/>
+ are among likely status results.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Content(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ContentResult"/> object with <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/> by specifying a
+ <paramref name="content"/> string.
+ </summary>
+ <param name="content">The content to write to the response.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ContentResult"/> object for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Content(System.String,System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ContentResult"/> object with <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/> by specifying a
+ <paramref name="content"/> string and a content type.
+ </summary>
+ <param name="content">The content to write to the response.</param>
+ <param name="contentType">The content type (MIME type).</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ContentResult"/> object for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Content(System.String,System.String,System.Text.Encoding)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ContentResult"/> object with <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/> by specifying a
+ <paramref name="content"/> string, a <paramref name="contentType"/>, and <paramref name="contentEncoding"/>.
+ </summary>
+ <param name="content">The content to write to the response.</param>
+ <param name="contentType">The content type (MIME type).</param>
+ <param name="contentEncoding">The content encoding.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ContentResult"/> object for the response.</returns>
+ <remarks>
+ If encoding is provided by both the 'charset' and the <paramref name="contentEncoding"/> parameters, then
+ the <paramref name="contentEncoding"/> parameter is chosen as the final encoding.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Content(System.String,Microsoft.Net.Http.Headers.MediaTypeHeaderValue)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ContentResult"/> object with <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/> by specifying a
+ <paramref name="content"/> string and a <paramref name="contentType"/>.
+ </summary>
+ <param name="content">The content to write to the response.</param>
+ <param name="contentType">The content type (MIME type).</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ContentResult"/> object for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Forbid">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ForbidResult"/> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/> by default).
+ </summary>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ForbidResult"/> for the response.</returns>
+ <remarks>
+ Some authentication schemes, such as cookies, will convert <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/> to
+ a redirect to show a login page.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Forbid(System.String[])">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ForbidResult"/> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/> by default) with the
+ specified authentication schemes.
+ </summary>
+ <param name="authenticationSchemes">The authentication schemes to challenge.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ForbidResult"/> for the response.</returns>
+ <remarks>
+ Some authentication schemes, such as cookies, will convert <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/> to
+ a redirect to show a login page.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Forbid(Microsoft.AspNetCore.Authentication.AuthenticationProperties)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ForbidResult"/> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/> by default) with the
+ specified <paramref name="properties" />.
+ </summary>
+ <param name="properties"><see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationProperties"/> used to perform the authentication
+ challenge.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ForbidResult"/> for the response.</returns>
+ <remarks>
+ Some authentication schemes, such as cookies, will convert <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/> to
+ a redirect to show a login page.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Forbid(Microsoft.AspNetCore.Authentication.AuthenticationProperties,System.String[])">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ForbidResult"/> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/> by default) with the
+ specified specified authentication schemes and <paramref name="properties" />.
+ </summary>
+ <param name="properties"><see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationProperties"/> used to perform the authentication
+ challenge.</param>
+ <param name="authenticationSchemes">The authentication schemes to challenge.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ForbidResult"/> for the response.</returns>
+ <remarks>
+ Some authentication schemes, such as cookies, will convert <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status403Forbidden"/> to
+ a redirect to show a login page.
+ </remarks>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.File(System.Byte[],System.String)">
+ <summary>
+ Returns a file with the specified <paramref name="fileContents" /> as content
+ (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/>) and the specified <paramref name="contentType" /> as the Content-Type.
+ </summary>
+ <param name="fileContents">The file contents.</param>
+ <param name="contentType">The Content-Type of the file.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.FileContentResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.File(System.Byte[],System.String,System.String)">
+ <summary>
+ Returns a file with the specified <paramref name="fileContents" /> as content (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/>), the
+ specified <paramref name="contentType" /> as the Content-Type and the
+ specified <paramref name="fileDownloadName" /> as the suggested file name.
+ </summary>
+ <param name="fileContents">The file contents.</param>
+ <param name="contentType">The Content-Type of the file.</param>
+ <param name="fileDownloadName">The suggested file name.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.FileContentResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.File(System.IO.Stream,System.String)">
+ <summary>
+ Returns a file in the specified <paramref name="fileStream" /> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/>)
+ with the specified <paramref name="contentType" /> as the Content-Type.
+ </summary>
+ <param name="fileStream">The <see cref="T:System.IO.Stream"/> with the contents of the file.</param>
+ <param name="contentType">The Content-Type of the file.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.FileStreamResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.File(System.IO.Stream,System.String,System.String)">
+ <summary>
+ Returns a file in the specified <paramref name="fileStream" /> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/>) with the
+ specified <paramref name="contentType" /> as the Content-Type and the
+ specified <paramref name="fileDownloadName" /> as the suggested file name.
+ </summary>
+ <param name="fileStream">The <see cref="T:System.IO.Stream"/> with the contents of the file.</param>
+ <param name="contentType">The Content-Type of the file.</param>
+ <param name="fileDownloadName">The suggested file name.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.FileStreamResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.File(System.String,System.String)">
+ <summary>
+ Returns the file specified by <paramref name="virtualPath" /> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/>) with the
+ specified <paramref name="contentType" /> as the Content-Type.
+ </summary>
+ <param name="virtualPath">The virtual path of the file to be returned.</param>
+ <param name="contentType">The Content-Type of the file.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.VirtualFileResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.File(System.String,System.String,System.String)">
+ <summary>
+ Returns the file specified by <paramref name="virtualPath" /> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/>) with the
+ specified <paramref name="contentType" /> as the Content-Type and the
+ specified <paramref name="fileDownloadName" /> as the suggested file name.
+ </summary>
+ <param name="virtualPath">The virtual path of the file to be returned.</param>
+ <param name="contentType">The Content-Type of the file.</param>
+ <param name="fileDownloadName">The suggested file name.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.VirtualFileResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.LocalRedirect(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.LocalRedirectResult"/> object that redirects
+ (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified local <paramref name="localUrl"/>.
+ </summary>
+ <param name="localUrl">The local URL to redirect to.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.LocalRedirectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.LocalRedirectPermanent(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.LocalRedirectResult"/> object with <see cref="P:Microsoft.AspNetCore.Mvc.LocalRedirectResult.Permanent"/> set to
+ true (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) using the specified <paramref name="localUrl"/>.
+ </summary>
+ <param name="localUrl">The local URL to redirect to.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.LocalRedirectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.LocalRedirectPreserveMethod(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.LocalRedirectResult"/> object with <see cref="P:Microsoft.AspNetCore.Mvc.LocalRedirectResult.Permanent"/> set to
+ false and <see cref="P:Microsoft.AspNetCore.Mvc.LocalRedirectResult.PreserveMethod"/> set to true
+ (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status307TemporaryRedirect"/>) using the specified <paramref name="localUrl"/>.
+ </summary>
+ <param name="localUrl">The local URL to redirect to.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.LocalRedirectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.LocalRedirectPermanentPreserveMethod(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.LocalRedirectResult"/> object with <see cref="P:Microsoft.AspNetCore.Mvc.LocalRedirectResult.Permanent"/> set to
+ true and <see cref="P:Microsoft.AspNetCore.Mvc.LocalRedirectResult.PreserveMethod"/> set to true
+ (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status308PermanentRedirect"/>) using the specified <paramref name="localUrl"/>.
+ </summary>
+ <param name="localUrl">The local URL to redirect to.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.LocalRedirectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.NotFound">
+ <summary>
+ Creates an <see cref="T:Microsoft.AspNetCore.Mvc.NotFoundResult"/> that produces a <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status404NotFound"/> response.
+ </summary>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.NotFoundResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.NotFound(System.Object)">
+ <summary>
+ Creates an <see cref="T:Microsoft.AspNetCore.Mvc.NotFoundObjectResult"/> that produces a <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status404NotFound"/> response.
+ </summary>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.NotFoundObjectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Page">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageResult"/> object that renders the page.
+ </summary>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageResult"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.PhysicalFile(System.String,System.String)">
+ <summary>
+ Returns the file specified by <paramref name="physicalPath" /> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/>) with the
+ specified <paramref name="contentType" /> as the Content-Type.
+ </summary>
+ <param name="physicalPath">The physical path of the file to be returned.</param>
+ <param name="contentType">The Content-Type of the file.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.PhysicalFileResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.PhysicalFile(System.String,System.String,System.String)">
+ <summary>
+ Returns the file specified by <paramref name="physicalPath" /> (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status200OK"/>) with the
+ specified <paramref name="contentType" /> as the Content-Type and the
+ specified <paramref name="fileDownloadName" /> as the suggested file name.
+ </summary>
+ <param name="physicalPath">The physical path of the file to be returned.</param>
+ <param name="contentType">The Content-Type of the file.</param>
+ <param name="fileDownloadName">The suggested file name.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.PhysicalFileResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Redirect(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.RedirectResult"/> object that redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>)
+ to the specified <paramref name="url"/>.
+ </summary>
+ <param name="url">The URL to redirect to.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectPermanent(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.RedirectResult"/> object with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectResult.Permanent"/> set to true
+ (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) using the specified <paramref name="url"/>.
+ </summary>
+ <param name="url">The URL to redirect to.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectPreserveMethod(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.RedirectResult"/> object with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectResult.Permanent"/> set to false
+ and <see cref="P:Microsoft.AspNetCore.Mvc.RedirectResult.PreserveMethod"/> set to true (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status307TemporaryRedirect"/>)
+ using the specified <paramref name="url"/>.
+ </summary>
+ <param name="url">The URL to redirect to.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectPermanentPreserveMethod(System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.RedirectResult"/> object with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectResult.Permanent"/> set to true
+ and <see cref="P:Microsoft.AspNetCore.Mvc.RedirectResult.PreserveMethod"/> set to true (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status308PermanentRedirect"/>)
+ using the specified <paramref name="url"/>.
+ </summary>
+ <param name="url">The URL to redirect to.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToAction(System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified action using the <paramref name="actionName"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToAction(System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified action using the
+ <paramref name="actionName"/> and <paramref name="routeValues"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToAction(System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified action using the
+ <paramref name="actionName"/> and the <paramref name="controllerName"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the pageModel.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToAction(System.String,System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified action using the specified
+ <paramref name="actionName"/>, <paramref name="controllerName"/>, and <paramref name="routeValues"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the pageModel.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToAction(System.String,System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified action using the specified
+ <paramref name="actionName"/>, <paramref name="controllerName"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the pageModel.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToAction(System.String,System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified action using the specified <paramref name="actionName"/>,
+ <paramref name="controllerName"/>, <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the pageModel.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToActionPreserveMethod(System.String,System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status307TemporaryRedirect"/>) to the specified action with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.Permanent"/> set to false and <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.PreserveMethod"/>
+ set to true, using the specified <paramref name="actionName"/>, <paramref name="controllerName"/>,
+ <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the pageModel.</param>
+ <param name="routeValues">The route data to use for generating the URL.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToActionPermanent(System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified action with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.Permanent"/> set to true using the specified <paramref name="actionName"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToActionPermanent(System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified action with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.Permanent"/> set to true using the specified <paramref name="actionName"/>
+ and <paramref name="routeValues"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToActionPermanent(System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified action with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.Permanent"/> set to true using the specified <paramref name="actionName"/>
+ and <paramref name="controllerName"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the pageModel.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToActionPermanent(System.String,System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified action with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.Permanent"/> set to true using the specified <paramref name="actionName"/>,
+ <paramref name="controllerName"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the pageModel.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToActionPermanent(System.String,System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified action with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.Permanent"/> set to true using the specified <paramref name="actionName"/>,
+ <paramref name="controllerName"/>, and <paramref name="routeValues"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the pageModel.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToActionPermanent(System.String,System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified action with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.Permanent"/> set to true using the specified <paramref name="actionName"/>,
+ <paramref name="controllerName"/>, <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the pageModel.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToActionPermanentPreserveMethod(System.String,System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status308PermanentRedirect"/>) to the specified action with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.Permanent"/> set to true and <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToActionResult.PreserveMethod"/>
+ set to true, using the specified <paramref name="actionName"/>, <paramref name="controllerName"/>,
+ <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the pageModel.</param>
+ <param name="routeValues">The route data to use for generating the URL.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToActionResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToRoute(System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified route using the specified <paramref name="routeName"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToRoute(System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified route using the specified <paramref name="routeValues"/>.
+ </summary>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToRoute(System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified route using the specified
+ <paramref name="routeName"/> and <paramref name="routeValues"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToRoute(System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified route using the specified
+ <paramref name="routeName"/> and <paramref name="fragment"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToRoute(System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified route using the specified
+ <paramref name="routeName"/>, <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToRoutePreserveMethod(System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status307TemporaryRedirect"/>) to the specified route with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to false and <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.PreserveMethod"/>
+ set to true, using the specified <paramref name="routeName"/>, <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="routeValues">The route data to use for generating the URL.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToRoutePermanent(System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified route with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to true using the specified <paramref name="routeName"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToRoutePermanent(System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified route with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to true using the specified <paramref name="routeValues"/>.
+ </summary>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToRoutePermanent(System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified route with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to true using the specified <paramref name="routeName"/>
+ and <paramref name="routeValues"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToRoutePermanent(System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified route with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to true using the specified <paramref name="routeName"/>
+ and <paramref name="fragment"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToRoutePermanent(System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified route with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to true using the specified <paramref name="routeName"/>,
+ <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToRoutePermanentPreserveMethod(System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status308PermanentRedirect"/>) to the specified route with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to true and <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.PreserveMethod"/>
+ set to true, using the specified <paramref name="routeName"/>, <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="routeValues">The route data to use for generating the URL.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToPage">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the current page.
+ </summary>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToPage(System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the current page with the specified <paramref name="routeValues"/>.
+ </summary>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToPage(System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified <paramref name="pageName"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToPage(System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="pageHandler"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToPage(System.String,System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="pageHandler"/> and <paramref name="routeValues"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToPage(System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="routeValues"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToPage(System.String,System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="fragment"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToPage(System.String,System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status302Found"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="routeValues"/> and <paramref name="fragment"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/>.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToPagePermanent(System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified <paramref name="pageName"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/> with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToPageResult.Permanent"/> set.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToPagePermanent(System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="routeValues"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/> with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToPageResult.Permanent"/> set.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToPagePermanent(System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified <paramref name="pageName"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/> with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToPageResult.Permanent"/> set.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToPagePermanent(System.String,System.String,System.Object)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="routeValues"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/> with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToPageResult.Permanent"/> set.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToPagePermanent(System.String,System.String,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="fragment"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/> with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToPageResult.Permanent"/> set.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToPagePermanent(System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="fragment"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/> with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToPageResult.Permanent"/> set.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToPagePermanent(System.String,System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status301MovedPermanently"/>) to the specified <paramref name="pageName"/>
+ using the specified <paramref name="routeValues"/> and <paramref name="fragment"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <param name="routeValues">The parameters for a route.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToPageResult"/> with <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToPageResult.Permanent"/> set.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToPagePreserveMethod(System.String,System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status307TemporaryRedirect"/>) to the specified page with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to false and <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.PreserveMethod"/>
+ set to true, using the specified <paramref name="pageName"/>, <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <param name="routeValues">The route data to use for generating the URL.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.RedirectToPagePermanentPreserveMethod(System.String,System.String,System.Object,System.String)">
+ <summary>
+ Redirects (<see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status308PermanentRedirect"/>) to the specified route with
+ <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.Permanent"/> set to true and <see cref="P:Microsoft.AspNetCore.Mvc.RedirectToRouteResult.PreserveMethod"/>
+ set to true, using the specified <paramref name="pageName"/>, <paramref name="routeValues"/>, and <paramref name="fragment"/>.
+ </summary>
+ <param name="pageName">The name of the page.</param>
+ <param name="pageHandler">The page handler to redirect to.</param>
+ <param name="routeValues">The route data to use for generating the URL.</param>
+ <param name="fragment">The fragment to add to the URL.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.RedirectToRouteResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.SignIn(System.Security.Claims.ClaimsPrincipal,System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.SignInResult"/> with the specified authentication scheme.
+ </summary>
+ <param name="principal">The <see cref="T:System.Security.Claims.ClaimsPrincipal"/> containing the user claims.</param>
+ <param name="authenticationScheme">The authentication scheme to use for the sign-in operation.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.SignInResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.SignIn(System.Security.Claims.ClaimsPrincipal,Microsoft.AspNetCore.Authentication.AuthenticationProperties,System.String)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.SignInResult"/> with the specified specified authentication scheme and
+ <paramref name="properties" />.
+ </summary>
+ <param name="principal">The <see cref="T:System.Security.Claims.ClaimsPrincipal"/> containing the user claims.</param>
+ <param name="properties"><see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationProperties"/> used to perform the sign-in operation.</param>
+ <param name="authenticationScheme">The authentication scheme to use for the sign-in operation.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.SignInResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.SignOut(System.String[])">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.SignOutResult"/> with the specified authentication schemes.
+ </summary>
+ <param name="authenticationSchemes">The authentication schemes to use for the sign-out operation.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.SignOutResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.SignOut(Microsoft.AspNetCore.Authentication.AuthenticationProperties,System.String[])">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.SignOutResult"/> with the specified specified authentication schemes and
+ <paramref name="properties" />.
+ </summary>
+ <param name="properties"><see cref="T:Microsoft.AspNetCore.Authentication.AuthenticationProperties"/> used to perform the sign-out operation.</param>
+ <param name="authenticationSchemes">The authentication scheme to use for the sign-out operation.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.SignOutResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.StatusCode(System.Int32)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.StatusCodeResult"/> object by specifying a <paramref name="statusCode"/>.
+ </summary>
+ <param name="statusCode">The status code to set on the response.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.StatusCodeResult"/> object for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.StatusCode(System.Int32,System.Object)">
+ <summary>
+ Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ObjectResult"/> object by specifying a <paramref name="statusCode"/> and <paramref name="value"/>
+ </summary>
+ <param name="statusCode">The status code to set on the response.</param>
+ <param name="value">The value to set on the <see cref="T:Microsoft.AspNetCore.Mvc.ObjectResult"/>.</param>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.ObjectResult"/> object for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Unauthorized">
+ <summary>
+ Creates an <see cref="T:Microsoft.AspNetCore.Mvc.UnauthorizedResult"/> that produces an <see cref="F:Microsoft.AspNetCore.Http.StatusCodes.Status401Unauthorized"/> response.
+ </summary>
+ <returns>The created <see cref="T:Microsoft.AspNetCore.Mvc.UnauthorizedResult"/> for the response.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryValidateModel(System.Object)">
+ <summary>
+ Validates the specified <paramref name="model"/> instance.
+ </summary>
+ <param name="model">The model to validate.</param>
+ <returns><c>true</c> if the <see cref="P:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.ModelState"/> is valid; <c>false</c> otherwise.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryValidateModel(System.Object,System.String)">
+ <summary>
+ Validates the specified <paramref name="model"/> instance.
+ </summary>
+ <param name="model">The model to validate.</param>
+ <param name="name">The key to use when looking up information in <see cref="P:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.ModelState"/>.
+ </param>
+ <returns><c>true</c> if the <see cref="P:Microsoft.AspNetCore.Mvc.RazorPages.PageModel.ModelState"/> is valid;<c>false</c> otherwise.</returns>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.PageResult">
+ <summary>
+ An <see cref="T:Microsoft.AspNetCore.Mvc.ActionResult"/> that renders a Razor Page.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageResult.ContentType">
+ <summary>
+ Gets or sets the Content-Type header for the response.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageResult.Model">
+ <summary>
+ Gets the page model.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageResult.Page">
+ <summary>
+ Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageBase"/> to be executed.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageResult.ViewData">
+ <summary>
+ Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary"/> for the page to be executed.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.PageResult.StatusCode">
+ <summary>
+ Gets or sets the HTTP status code.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.PageResult.ExecuteResultAsync(Microsoft.AspNetCore.Mvc.ActionContext)">
+ <inheritdoc />
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.Resources.PageActionDescriptorProvider_RouteTemplateCannotBeOverrideable">
+ <summary>
+ The route for the page at '{0}' cannot start with / or ~/. Pages do not support overriding the file path of the page.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Resources.FormatPageActionDescriptorProvider_RouteTemplateCannotBeOverrideable(System.Object)">
+ <summary>
+ The route for the page at '{0}' cannot start with / or ~/. Pages do not support overriding the file path of the page.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.Resources.PropertyOfTypeCannotBeNull">
+ <summary>
+ The '{0}' property of '{1}' must not be null.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Resources.FormatPropertyOfTypeCannotBeNull(System.Object,System.Object)">
+ <summary>
+ The '{0}' property of '{1}' must not be null.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.Resources.ActivatedInstance_MustBeAnInstanceOf">
+ <summary>
+ Page created by '{0}' must be an instance of '{1}'.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Resources.FormatActivatedInstance_MustBeAnInstanceOf(System.Object,System.Object)">
+ <summary>
+ Page created by '{0}' must be an instance of '{1}'.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.Resources.PageViewResult_ContextIsInvalid">
+ <summary>
+ The context used to execute '{0}' must be an instance of '{1}'. Returning a '{2}' from a controller is a not supported.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Resources.FormatPageViewResult_ContextIsInvalid(System.Object,System.Object,System.Object)">
+ <summary>
+ The context used to execute '{0}' must be an instance of '{1}'. Returning a '{2}' from a controller is a not supported.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.Resources.ArgumentCannotBeNullOrEmpty">
+ <summary>
+ Value cannot be null or empty.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Resources.FormatArgumentCannotBeNullOrEmpty">
+ <summary>
+ Value cannot be null or empty.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.Resources.UnsupportedHandlerMethodType">
+ <summary>
+ Unsupported handler method return type '{0}'.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Resources.FormatUnsupportedHandlerMethodType(System.Object)">
+ <summary>
+ Unsupported handler method return type '{0}'.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.Resources.AmbiguousHandler">
+ <summary>
+ Multiple handlers matched. The following handlers matched route data and had all constraints satisfied:{0}{0}{1}
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Resources.FormatAmbiguousHandler(System.Object,System.Object)">
+ <summary>
+ Multiple handlers matched. The following handlers matched route data and had all constraints satisfied:{0}{0}{1}
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.Resources.PathMustBeRootRelativePath">
+ <summary>
+ Path must be a root relative path that starts with a forward slash '/'.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Resources.FormatPathMustBeRootRelativePath">
+ <summary>
+ Path must be a root relative path that starts with a forward slash '/'.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.Resources.AsyncPageFilter_InvalidShortCircuit">
+ <summary>
+ If an {0} provides a result value by setting the {1} property of {2} to a non-null value, then it cannot call the next filter by invoking {3}.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Resources.FormatAsyncPageFilter_InvalidShortCircuit(System.Object,System.Object,System.Object,System.Object)">
+ <summary>
+ If an {0} provides a result value by setting the {1} property of {2} to a non-null value, then it cannot call the next filter by invoking {3}.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.Resources.InvalidPageType_WrongBase">
+ <summary>
+ The type '{0}' is not a valid page. A page must inherit from '{1}'.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Resources.FormatInvalidPageType_WrongBase(System.Object,System.Object)">
+ <summary>
+ The type '{0}' is not a valid page. A page must inherit from '{1}'.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.Resources.InvalidPageType_NoModelProperty">
+ <summary>
+ The type '{0}' is not a valid page. A page must define a public, non-static '{1}' property.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Resources.FormatInvalidPageType_NoModelProperty(System.Object,System.Object)">
+ <summary>
+ The type '{0}' is not a valid page. A page must define a public, non-static '{1}' property.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.Resources.InvalidValidPageName">
+ <summary>
+ '{0}' is not a valid page name. A page name is path relative to the Razor Pages root directory that starts with a leading forward slash ('/') and does not contain the file extension e.g "/Users/Edit".
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.RazorPages.Resources.FormatInvalidValidPageName(System.Object)">
+ <summary>
+ '{0}' is not a valid page name. A page name is path relative to the Razor Pages root directory that starts with a leading forward slash ('/') and does not contain the file extension e.g "/Users/Edit".
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.RazorPages.RazorPagesOptions">
+ <summary>
+ Provides configuration for RazorPages.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.RazorPagesOptions.Conventions">
+ <summary>
+ Gets a collection of <see cref="T:Microsoft.AspNetCore.Mvc.ApplicationModels.IPageConvention"/> instances that are applied during
+ route and page model construction.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.RazorPages.RazorPagesOptions.RootDirectory">
+ <summary>
+ Application relative path used as the root of discovery for Razor Page files.
+ Defaults to the <c>/Pages</c> directory under application root.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncPageFilter">
+ <summary>
+ A filter that asynchronously surrounds execution of the page handler method.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.Filters.IAsyncPageFilter.OnPageHandlerSelectionAsync(Microsoft.AspNetCore.Mvc.Filters.PageHandlerSelectedContext)">
+ <summary>
+ Called asynchronously after the handler method has been selected, but before model binding occurs.
+ </summary>
+ <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.PageHandlerSelectedContext"/>.</param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion indicates the filter has executed.</returns>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.Filters.IAsyncPageFilter.OnPageHandlerExecutionAsync(Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutingContext,Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutionDelegate)">
+ <summary>
+ Called asynchronously before the handler method is invoked, after model binding is complete.
+ </summary>
+ <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutingContext"/>.</param>
+ <param name="next">
+ The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutionDelegate"/>. Invoked to execute the next page filter or the handler method itself.
+ </param>
+ <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion indicates the filter has executed.</returns>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.Filters.IPageFilter">
+ <summary>
+ A filter that surrounds execution of a page handler method.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.Filters.IPageFilter.OnPageHandlerSelected(Microsoft.AspNetCore.Mvc.Filters.PageHandlerSelectedContext)">
+ <summary>
+ Called after a handler method has been selected, but before model binding occurs.
+ </summary>
+ <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.PageHandlerSelectedContext"/>.</param>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.Filters.IPageFilter.OnPageHandlerExecuting(Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutingContext)">
+ <summary>
+ Called before the handler method executes, after model binding is complete.
+ </summary>
+ <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutingContext"/>.</param>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.Filters.IPageFilter.OnPageHandlerExecuted(Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext)">
+ <summary>
+ Called after the handler method executes, before the action result.
+ </summary>
+ <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext"/>.</param>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext">
+ <summary>
+ A context for page filters, used specifically in
+ <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IPageFilter.OnPageHandlerExecuted(Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext)"/> and
+ <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IAsyncPageFilter.OnPageHandlerExecutionAsync(Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutingContext,Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutionDelegate)"/>.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext.#ctor(Microsoft.AspNetCore.Mvc.RazorPages.PageContext,System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata},Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.HandlerMethodDescriptor,System.Object)">
+ <summary>
+ Creates a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext"/>.
+ </summary>
+ <param name="pageContext">The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageContext"/> associated with the current request.</param>
+ <param name="filters">The set of filters associated with the page.</param>
+ <param name="handlerMethod">The handler method to be invoked, may be null.</param>
+ <param name="handlerInstance">The handler instance associated with the page.</param>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext.ActionDescriptor">
+ <summary>
+ Gets the descriptor associated with the current page.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext.Canceled">
+ <summary>
+ Gets or sets an indication that an page filter short-circuited the action and the page filter pipeline.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext.HandlerInstance">
+ <summary>
+ Gets the handler instance containing the handler method.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext.HandlerMethod">
+ <summary>
+ Gets the descriptor for the handler method that was invoked.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext.Exception">
+ <summary>
+ Gets or sets the <see cref="T:System.Exception"/> caught while executing the action or action filters, if
+ any.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext.ExceptionDispatchInfo">
+ <summary>
+ Gets or sets the <see cref="T:System.Runtime.ExceptionServices.ExceptionDispatchInfo"/> for the
+ <see cref="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext.Exception"/>, if an <see cref="T:System.Exception"/> was caught and this information captured.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext.ExceptionHandled">
+ <summary>
+ Gets or sets an indication that the <see cref="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext.Exception"/> has been handled.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext.Result">
+ <summary>
+ Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.IActionResult"/>.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutingContext">
+ <summary>
+ A context for page filters, used specifically in
+ <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IPageFilter.OnPageHandlerExecuting(Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutingContext)"/> and
+ <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IAsyncPageFilter.OnPageHandlerExecutionAsync(Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutingContext,Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutionDelegate)"/>.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutingContext.#ctor(Microsoft.AspNetCore.Mvc.RazorPages.PageContext,System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata},Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.HandlerMethodDescriptor,System.Collections.Generic.IDictionary{System.String,System.Object},System.Object)">
+ <summary>
+ Creates a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutingContext"/>.
+ </summary>
+ <param name="pageContext">The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageContext"/> associated with the current request.</param>
+ <param name="filters">The set of filters associated with the page.</param>
+ <param name="handlerMethod">The handler method to be invoked, may be null.</param>
+ <param name="handlerArguments">The arguments to provide to the handler method.</param>
+ <param name="handlerInstance">The handler instance associated with the page.</param>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutingContext.ActionDescriptor">
+ <summary>
+ Gets the descriptor associated with the current page.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutingContext.Result">
+ <summary>
+ Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.IActionResult"/> to execute. Setting <see cref="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutingContext.Result"/> to a non-<c>null</c>
+ value inside a page filter will short-circuit the page and any remaining page filters.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutingContext.HandlerArguments">
+ <summary>
+ Gets the arguments to pass when invoking the handler method. Keys are parameter names.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutingContext.HandlerMethod">
+ <summary>
+ Gets the descriptor for the handler method about to be invoked.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutingContext.HandlerInstance">
+ <summary>
+ Gets the object instance containing the handler method.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutionDelegate">
+ <summary>
+ A delegate that asynchronously returns a <see cref="T:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext"/> indicating the page or the next
+ page filter has executed.
+ </summary>
+ <returns>
+ A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns an <see cref="T:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext"/>.
+ </returns>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Mvc.Filters.PageHandlerSelectedContext">
+ <summary>
+ A context for page filters, used specifically in
+ <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IPageFilter.OnPageHandlerSelected(Microsoft.AspNetCore.Mvc.Filters.PageHandlerSelectedContext)"/> and
+ <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IAsyncPageFilter.OnPageHandlerSelectionAsync(Microsoft.AspNetCore.Mvc.Filters.PageHandlerSelectedContext)"/>.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Mvc.Filters.PageHandlerSelectedContext.#ctor(Microsoft.AspNetCore.Mvc.RazorPages.PageContext,System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata},System.Object)">
+ <summary>
+ Creates a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext"/>.
+ </summary>
+ <param name="pageContext">The <see cref="T:Microsoft.AspNetCore.Mvc.RazorPages.PageContext"/> associated with the current request.</param>
+ <param name="filters">The set of filters associated with the page.</param>
+ <param name="handlerInstance">The handler instance associated with the page.</param>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerSelectedContext.ActionDescriptor">
+ <summary>
+ Gets the descriptor associated with the current page.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerSelectedContext.HandlerMethod">
+ <summary>
+ Gets or sets the descriptor for the handler method about to be invoked.
+ </summary>
+ </member>
+ <member name="P:Microsoft.AspNetCore.Mvc.Filters.PageHandlerSelectedContext.HandlerInstance">
+ <summary>
+ Gets the object instance containing the handler method.
+ </summary>
+ </member>
+ </members>
+</doc>