RequestDelegateRouteBuilderExtensions.MapMiddlewareDelete(IRouteBuilder, String, Action<IApplicationBuilder>) Method
Definition
Adds a route to the IRouteBuilder that only matches HTTP DELETE requests for the given
template
, and action
.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Routing::IRouteBuilder ^ MapMiddlewareDelete(Microsoft::AspNetCore::Routing::IRouteBuilder ^ builder, System::String ^ template, Action<Microsoft::AspNetCore::Builder::IApplicationBuilder ^> ^ action);
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapMiddlewareDelete (this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> action);
static member MapMiddlewareDelete : Microsoft.AspNetCore.Routing.IRouteBuilder * string * Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> -> Microsoft.AspNetCore.Routing.IRouteBuilder
<Extension()>
Public Function MapMiddlewareDelete (builder As IRouteBuilder, template As String, action As Action(Of IApplicationBuilder)) As IRouteBuilder
Parameters
- builder
- IRouteBuilder
The IRouteBuilder.
- template
- String
The route template.
- action
- Action<IApplicationBuilder>
The action to apply to the IApplicationBuilder.
Returns
A reference to the builder
after this operation has completed.