Udostępnij za pośrednictwem


RequestDelegateRouteBuilderExtensions.MapDelete Metoda

Definicja

Przeciążenia

MapDelete(IRouteBuilder, String, RequestDelegate)

Dodaje trasę do IRouteBuilder obiektu, która odpowiada tylko żądaniom HTTP DELETE dla danego templateelementu i handler.

MapDelete(IRouteBuilder, String, Action<IApplicationBuilder>)

Dodaje trasę do IRouteBuilder obiektu, która odpowiada tylko żądaniom HTTP DELETE dla danego templateelementu i action.

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

Dodaje trasę do IRouteBuilder obiektu, która odpowiada tylko żądaniom HTTP DELETE dla danego templateelementu i handler.

MapDelete(IRouteBuilder, String, RequestDelegate)

Źródło:
RequestDelegateRouteBuilderExtensions.cs
Źródło:
RequestDelegateRouteBuilderExtensions.cs
Źródło:
RequestDelegateRouteBuilderExtensions.cs

Dodaje trasę do IRouteBuilder obiektu, która odpowiada tylko żądaniom HTTP DELETE dla danego templateelementu i handler.

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

Parametry

builder
IRouteBuilder

Element IRouteBuilder.

template
String

Szablon trasy.

handler
RequestDelegate

Procedura RequestDelegate obsługi tras.

Zwraca

Odwołanie do elementu po zakończeniu builder tej operacji.

Dotyczy

MapDelete(IRouteBuilder, String, Action<IApplicationBuilder>)

Dodaje trasę do IRouteBuilder obiektu, która odpowiada tylko żądaniom HTTP DELETE dla danego templateelementu i action.

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

Parametry

builder
IRouteBuilder

Element IRouteBuilder.

template
String

Szablon trasy.

action
Action<IApplicationBuilder>

Akcja, która ma być stosowana do elementu IApplicationBuilder.

Zwraca

Odwołanie do elementu po zakończeniu builder tej operacji.

Dotyczy

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

Źródło:
RequestDelegateRouteBuilderExtensions.cs
Źródło:
RequestDelegateRouteBuilderExtensions.cs
Źródło:
RequestDelegateRouteBuilderExtensions.cs

Dodaje trasę do IRouteBuilder obiektu, która odpowiada tylko żądaniom HTTP DELETE dla danego templateelementu i handler.

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

Parametry

builder
IRouteBuilder

Element IRouteBuilder.

template
String

Szablon trasy.

handler
Func<HttpRequest,HttpResponse,RouteData,Task>

Procedura obsługi tras.

Zwraca

Odwołanie do elementu po zakończeniu builder tej operacji.

Dotyczy