RequestDelegateRouteBuilderExtensions.MapGet Metodo

Definizione

Overload

MapGet(IRouteBuilder, String, RequestDelegate)

Aggiunge una route all'oggetto IRouteBuilder che corrisponde solo alle richieste HTTP GET per l'oggetto templatespecificato e handler.

MapGet(IRouteBuilder, String, Action<IApplicationBuilder>)

Aggiunge una route all'oggetto IRouteBuilder che corrisponde solo alle richieste HTTP GET per l'oggetto templatespecificato e action.

MapGet(IRouteBuilder, String, Func<HttpRequest,HttpResponse,RouteData,Task>)

Aggiunge una route all'oggetto IRouteBuilder che corrisponde solo alle richieste HTTP GET per l'oggetto templatespecificato e handler.

MapGet(IRouteBuilder, String, RequestDelegate)

Aggiunge una route all'oggetto IRouteBuilder che corrisponde solo alle richieste HTTP GET per l'oggetto templatespecificato e handler.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Routing::IRouteBuilder ^ MapGet(Microsoft::AspNetCore::Routing::IRouteBuilder ^ builder, System::String ^ template, Microsoft::AspNetCore::Http::RequestDelegate ^ handler);
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapGet (this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, Microsoft.AspNetCore.Http.RequestDelegate handler);
static member MapGet : Microsoft.AspNetCore.Routing.IRouteBuilder * string * Microsoft.AspNetCore.Http.RequestDelegate -> Microsoft.AspNetCore.Routing.IRouteBuilder
<Extension()>
Public Function MapGet (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 di route.

Restituisce

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

Si applica a

MapGet(IRouteBuilder, String, Action<IApplicationBuilder>)

Aggiunge una route all'oggetto IRouteBuilder che corrisponde solo alle richieste HTTP GET per l'oggetto templatespecificato e action.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Routing::IRouteBuilder ^ MapGet(Microsoft::AspNetCore::Routing::IRouteBuilder ^ builder, System::String ^ template, Action<Microsoft::AspNetCore::Builder::IApplicationBuilder ^> ^ action);
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapGet (this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> action);
static member MapGet : Microsoft.AspNetCore.Routing.IRouteBuilder * string * Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> -> Microsoft.AspNetCore.Routing.IRouteBuilder
<Extension()>
Public Function MapGet (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 builder completamento dell'operazione.

Si applica a

MapGet(IRouteBuilder, String, Func<HttpRequest,HttpResponse,RouteData,Task>)

Aggiunge una route all'oggetto IRouteBuilder che corrisponde solo alle richieste HTTP GET per l'oggetto templatespecificato e handler.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Routing::IRouteBuilder ^ MapGet(Microsoft::AspNetCore::Routing::IRouteBuilder ^ builder, System::String ^ template, Func<Microsoft::AspNetCore::Http::HttpRequest ^, Microsoft::AspNetCore::Http::HttpResponse ^, Microsoft::AspNetCore::Routing::RouteData ^, System::Threading::Tasks::Task ^> ^ handler);
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapGet (this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, Func<Microsoft.AspNetCore.Http.HttpRequest,Microsoft.AspNetCore.Http.HttpResponse,Microsoft.AspNetCore.Routing.RouteData,System.Threading.Tasks.Task> handler);
static member MapGet : Microsoft.AspNetCore.Routing.IRouteBuilder * string * Func<Microsoft.AspNetCore.Http.HttpRequest, Microsoft.AspNetCore.Http.HttpResponse, Microsoft.AspNetCore.Routing.RouteData, System.Threading.Tasks.Task> -> Microsoft.AspNetCore.Routing.IRouteBuilder
<Extension()>
Public Function MapGet (builder As IRouteBuilder, template As String, handler As Func(Of HttpRequest, HttpResponse, RouteData, Task)) As IRouteBuilder

Parametri

builder
IRouteBuilder

Oggetto IRouteBuilder.

template
String

Modello di route.

handler
Func<HttpRequest,HttpResponse,RouteData,Task>

Gestore di route.

Restituisce

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

Si applica a