共用方式為


ControllerEndpointRouteBuilderExtensions.MapFallbackToController 方法

定義

多載

MapFallbackToController(IEndpointRouteBuilder, String, String)

將特製化 RouteEndpoint 新增至 IEndpointRouteBuilder ,以符合具有最低可能優先順序的非檔案名要求。 要求會路由傳送至符合 action 、 和 controller 的控制器端點。

MapFallbackToController(IEndpointRouteBuilder, String, String, String)

將特製化 RouteEndpoint 新增至 IEndpointRouteBuilder ,以符合具有最低可能優先順序的非檔案名要求。 要求會路由傳送至符合 action 、 和 controller 的控制器端點。

MapFallbackToController(IEndpointRouteBuilder, String, String)

來源:
ControllerEndpointRouteBuilderExtensions.cs

將特製化 RouteEndpoint 新增至 IEndpointRouteBuilder ,以符合具有最低可能優先順序的非檔案名要求。 要求會路由傳送至符合 action 、 和 controller 的控制器端點。

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

參數

endpoints
IEndpointRouteBuilder

IEndpointRouteBuilder 加入路由的 。

action
String

動作名稱。

controller
String

控制器名稱。

傳回

備註

MapFallbackToController(IEndpointRouteBuilder, String, String) 用於處理要求 URL 路徑不包含檔案名,且沒有其他端點相符的情況。 這方便將動態內容的要求路由傳送至 SPA 架構,同時允許要求不存在的檔案產生 HTTP 404。

MapFallbackToController(IEndpointRouteBuilder, String, String) 使用 模式 {*path:nonfile} 註冊端點。 已註冊端點的順序將是 int.MaxValue

MapFallbackToController(IEndpointRouteBuilder, String, String) 不會重新執行路由,而且不會根據其他位置定義的路由產生路由值。 使用此多載時, path 將會提供路由值。

MapFallbackToController(IEndpointRouteBuilder, String, String) 不會嘗試在符合所提供 actioncontroller 的多個動作之間厘清。 如果多個動作符合這些值,則會定義結果。

適用於

MapFallbackToController(IEndpointRouteBuilder, String, String, String)

來源:
ControllerEndpointRouteBuilderExtensions.cs

將特製化 RouteEndpoint 新增至 IEndpointRouteBuilder ,以符合具有最低可能優先順序的非檔案名要求。 要求會路由傳送至符合 action 、 和 controller 的控制器端點。

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

參數

endpoints
IEndpointRouteBuilder

IEndpointRouteBuilder 加入路由的 。

pattern
String

路由模式。

action
String

動作名稱。

controller
String

控制器名稱。

傳回

備註

MapFallbackToController(IEndpointRouteBuilder, String, String, String) 用於處理要求 URL 路徑不包含檔案名,且沒有其他端點相符的情況。 這方便將動態內容的要求路由傳送至 SPA 架構,同時允許要求不存在的檔案產生 HTTP 404。

已註冊端點的順序將是 int.MaxValue

此多載將使用提供的 pattern 逐字。 :nonfile使用路由限制來排除靜態檔案的要求。

MapFallbackToController(IEndpointRouteBuilder, String, String, String) 不會重新執行路由,而且不會根據其他位置定義的路由產生路由值。 使用此多載時,將會提供比對 pattern 所提供的路由值。

MapFallbackToController(IEndpointRouteBuilder, String, String, String) 不會嘗試在符合所提供 actioncontroller 的多個動作之間厘清。 如果多個動作符合這些值,則會定義結果。

適用於