EndpointRouteBuilderExtensions.MapGet Método

Definición

Sobrecargas

MapGet(IEndpointRouteBuilder, String, Delegate)

Agrega un RouteEndpoint objeto al IEndpointRouteBuilder objeto que coincide con las solicitudes HTTP GET para el patrón especificado.

MapGet(IEndpointRouteBuilder, String, RequestDelegate)

Agrega un RouteEndpoint objeto al IEndpointRouteBuilder objeto que coincide con las solicitudes HTTP GET para el patrón especificado.

MapGet(IEndpointRouteBuilder, String, Delegate)

Agrega un RouteEndpoint objeto al IEndpointRouteBuilder objeto que coincide con las solicitudes HTTP GET para el patrón especificado.

public static Microsoft.AspNetCore.Builder.RouteHandlerBuilder MapGet (this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string pattern, Delegate handler);
static member MapGet : Microsoft.AspNetCore.Routing.IEndpointRouteBuilder * string * Delegate -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder
<Extension()>
Public Function MapGet (endpoints As IEndpointRouteBuilder, pattern As String, handler As Delegate) As RouteHandlerBuilder

Parámetros

endpoints
IEndpointRouteBuilder

al IEndpointRouteBuilder que se va a agregar la ruta.

pattern
String

Patrón de ruta.

handler
Delegate

Delegado que se ejecuta cuando coincide el punto de conexión.

Devoluciones

RouteHandlerBuilder que se puede usar para personalizar aún más el punto de conexión.

Se aplica a

MapGet(IEndpointRouteBuilder, String, RequestDelegate)

Agrega un RouteEndpoint objeto al IEndpointRouteBuilder objeto que coincide con las solicitudes HTTP GET para el patrón especificado.

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

Parámetros

endpoints
IEndpointRouteBuilder

al IEndpointRouteBuilder que se va a agregar la ruta.

pattern
String

Patrón de ruta.

requestDelegate
RequestDelegate

Delegado que se ejecuta cuando coincide el punto de conexión.

Devoluciones

IEndpointConventionBuilder que se puede usar para personalizar aún más el punto de conexión.

Se aplica a