RazorPagesEndpointRouteBuilderExtensions.MapFallbackToAreaPage 方法

定义

重载

MapFallbackToAreaPage(IEndpointRouteBuilder, String, String)

向 添加专用 RouteEndpoint 的 , IEndpointRouteBuilder 以匹配具有可能最低优先级的非文件名的请求。 请求将路由到与 、 和 area匹配page的页面终结点。

MapFallbackToAreaPage(IEndpointRouteBuilder, String, String, String)

向 添加专用 RouteEndpoint 的 , IEndpointRouteBuilder 以匹配具有可能最低优先级的非文件名的请求。 请求将路由到与 、 和 area匹配page的页面终结点。

MapFallbackToAreaPage(IEndpointRouteBuilder, String, String)

向 添加专用 RouteEndpoint 的 , IEndpointRouteBuilder 以匹配具有可能最低优先级的非文件名的请求。 请求将路由到与 、 和 area匹配page的页面终结点。

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Builder::IEndpointConventionBuilder ^ MapFallbackToAreaPage(Microsoft::AspNetCore::Routing::IEndpointRouteBuilder ^ endpoints, System::String ^ page, System::String ^ area);
public static Microsoft.AspNetCore.Builder.IEndpointConventionBuilder MapFallbackToAreaPage (this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string page, string area);
static member MapFallbackToAreaPage : Microsoft.AspNetCore.Routing.IEndpointRouteBuilder * string * string -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder
<Extension()>
Public Function MapFallbackToAreaPage (endpoints As IEndpointRouteBuilder, page As String, area As String) As IEndpointConventionBuilder

参数

endpoints
IEndpointRouteBuilder

IEndpointRouteBuilder要向其添加路由的 。

page
String

操作名称。

area
String

区域名称。

返回

注解

MapFallbackToAreaPage(IEndpointRouteBuilder, String, String) 用于处理请求的 URL 路径不包含文件名,并且没有其他终结点匹配的情况。 这便于将动态内容的请求路由到 SPA 框架,同时允许对不存在的文件的请求导致 HTTP 404。

MapFallbackToAreaPage(IEndpointRouteBuilder, String, String) 使用模式 {*path:nonfile}注册终结点。 已注册终结点的顺序为 int.MaxValue

MapFallbackToAreaPage(IEndpointRouteBuilder, String, String) 不会重新执行路由,也不会根据在其他位置定义的路由生成路由值。 使用此重载时, path 路由值将可用。

适用于

MapFallbackToAreaPage(IEndpointRouteBuilder, String, String, String)

向 添加专用 RouteEndpoint 的 , IEndpointRouteBuilder 以匹配具有可能最低优先级的非文件名的请求。 请求将路由到与 、 和 area匹配page的页面终结点。

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Builder::IEndpointConventionBuilder ^ MapFallbackToAreaPage(Microsoft::AspNetCore::Routing::IEndpointRouteBuilder ^ endpoints, System::String ^ pattern, System::String ^ page, System::String ^ area);
public static Microsoft.AspNetCore.Builder.IEndpointConventionBuilder MapFallbackToAreaPage (this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string pattern, string page, string area);
static member MapFallbackToAreaPage : Microsoft.AspNetCore.Routing.IEndpointRouteBuilder * string * string * string -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder
<Extension()>
Public Function MapFallbackToAreaPage (endpoints As IEndpointRouteBuilder, pattern As String, page As String, area As String) As IEndpointConventionBuilder

参数

endpoints
IEndpointRouteBuilder

IEndpointRouteBuilder要向其添加路由的 。

pattern
String

路由模式。

page
String

操作名称。

area
String

区域名称。

返回

注解

MapFallbackToAreaPage(IEndpointRouteBuilder, String, String, String) 用于处理请求的 URL 路径不包含文件名,并且没有其他终结点匹配的情况。 这便于将动态内容的请求路由到 SPA 框架,同时允许对不存在的文件的请求导致 HTTP 404。

已注册终结点的顺序为 int.MaxValue

此重载将使用提供的 pattern 逐字。 :nonfile使用路由限制排除对静态文件的请求。

MapFallbackToAreaPage(IEndpointRouteBuilder, String, String, String) 不会重新执行路由,也不会根据在其他位置定义的路由生成路由值。 使用此重载时,匹配 pattern 提供的路由值将可用。

适用于