EndpointRouteBuilderExtensions.MapPost Método

Definición

Sobrecargas

MapPost(IEndpointRouteBuilder, String, RequestDelegate)

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

MapPost(IEndpointRouteBuilder, String, Delegate)

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

MapPost(IEndpointRouteBuilder, String, RequestDelegate)

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

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

MapPost(IEndpointRouteBuilder, String, Delegate)

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

public static Microsoft.AspNetCore.Builder.RouteHandlerBuilder MapPost (this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string pattern, Delegate handler);
static member MapPost : Microsoft.AspNetCore.Routing.IEndpointRouteBuilder * string * Delegate -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder
<Extension()>
Public Function MapPost (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