Share via


RequestDelegateRouteBuilderExtensions.MapRoute Metodo

Definizione

Overload

MapRoute(IRouteBuilder, String, RequestDelegate)

Aggiunge una route all'oggetto per l'oggetto IRouteBuilder specificato templatee handler.

MapRoute(IRouteBuilder, String, Action<IApplicationBuilder>)

Aggiunge una route all'oggetto per l'oggetto IRouteBuilder specificato templatee action.

MapRoute(IRouteBuilder, String, RequestDelegate)

Origine:
RequestDelegateRouteBuilderExtensions.cs
Origine:
RequestDelegateRouteBuilderExtensions.cs

Aggiunge una route all'oggetto per l'oggetto IRouteBuilder specificato templatee handler.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Routing::IRouteBuilder ^ MapRoute(Microsoft::AspNetCore::Routing::IRouteBuilder ^ builder, System::String ^ template, Microsoft::AspNetCore::Http::RequestDelegate ^ handler);
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapRoute (this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, Microsoft.AspNetCore.Http.RequestDelegate handler);
static member MapRoute : Microsoft.AspNetCore.Routing.IRouteBuilder * string * Microsoft.AspNetCore.Http.RequestDelegate -> Microsoft.AspNetCore.Routing.IRouteBuilder
<Extension()>
Public Function MapRoute (builder As IRouteBuilder, template As String, handler As RequestDelegate) As IRouteBuilder

Parametri

builder
IRouteBuilder

Oggetto IRouteBuilder.

template
String

Modello di route.

handler
RequestDelegate

Gestore RequestDelegate della route.

Restituisce

Riferimento all'oggetto dopo il completamento dell'operazione builder .

Si applica a

MapRoute(IRouteBuilder, String, Action<IApplicationBuilder>)

Aggiunge una route all'oggetto per l'oggetto IRouteBuilder specificato templatee action.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Routing::IRouteBuilder ^ MapRoute(Microsoft::AspNetCore::Routing::IRouteBuilder ^ builder, System::String ^ template, Action<Microsoft::AspNetCore::Builder::IApplicationBuilder ^> ^ action);
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapRoute (this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> action);
static member MapRoute : Microsoft.AspNetCore.Routing.IRouteBuilder * string * Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> -> Microsoft.AspNetCore.Routing.IRouteBuilder
<Extension()>
Public Function MapRoute (builder As IRouteBuilder, template As String, action As Action(Of IApplicationBuilder)) As IRouteBuilder

Parametri

builder
IRouteBuilder

Oggetto IRouteBuilder.

template
String

Modello di route.

action
Action<IApplicationBuilder>

Azione da applicare all'oggetto IApplicationBuilder.

Restituisce

Riferimento all'oggetto dopo il completamento dell'operazione builder .

Si applica a