RequestDelegateRouteBuilderExtensions.MapPost Yöntem

Tanım

Aşırı Yüklemeler

MapPost(IRouteBuilder, String, RequestDelegate)

öğesine yalnızca verilen templateve handleriçin HTTP POST istekleriyle eşleşen bir yol IRouteBuilder ekler.

MapPost(IRouteBuilder, String, Action<IApplicationBuilder>)

öğesine yalnızca verilen templateve actioniçin HTTP POST istekleriyle eşleşen bir yol IRouteBuilder ekler.

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

öğesine yalnızca verilen templateve handleriçin HTTP POST istekleriyle eşleşen bir yol IRouteBuilder ekler.

MapPost(IRouteBuilder, String, RequestDelegate)

öğesine yalnızca verilen templateve handleriçin HTTP POST istekleriyle eşleşen bir yol IRouteBuilder ekler.

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

Parametreler

template
String

Yol şablonu.

handler
RequestDelegate

Yol RequestDelegate işleyicisi.

Döndürülenler

Bu işlem tamamlandıktan sonra öğesine builder başvuru.

Şunlara uygulanır

MapPost(IRouteBuilder, String, Action<IApplicationBuilder>)

öğesine yalnızca verilen templateve actioniçin HTTP POST istekleriyle eşleşen bir yol IRouteBuilder ekler.

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

Parametreler

template
String

Yol şablonu.

action
Action<IApplicationBuilder>

öğesine uygulanacak IApplicationBuildereylem.

Döndürülenler

Bu işlem tamamlandıktan sonra öğesine builder başvuru.

Şunlara uygulanır

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

öğesine yalnızca verilen templateve handleriçin HTTP POST istekleriyle eşleşen bir yol IRouteBuilder ekler.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Routing::IRouteBuilder ^ MapPost(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 MapPost (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 MapPost : 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 MapPost (builder As IRouteBuilder, template As String, handler As Func(Of HttpRequest, HttpResponse, RouteData, Task)) As IRouteBuilder

Parametreler

template
String

Yol şablonu.

handler
Func<HttpRequest,HttpResponse,RouteData,Task>

Yol işleyicisi.

Döndürülenler

Bu işlem tamamlandıktan sonra öğesine builder başvuru.

Şunlara uygulanır