RequestDelegateRouteBuilderExtensions Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides extension methods for adding new handlers to a IRouteBuilder.
public ref class RequestDelegateRouteBuilderExtensions abstract sealed
public static class RequestDelegateRouteBuilderExtensions
type RequestDelegateRouteBuilderExtensions = class
Public Module RequestDelegateRouteBuilderExtensions
- Inheritance
-
RequestDelegateRouteBuilderExtensions
Methods
MapDelete(IRouteBuilder, String, Action<IApplicationBuilder>) |
Adds a route to the IRouteBuilder that only matches HTTP DELETE requests for the given
|
MapDelete(IRouteBuilder, String, Func<HttpRequest,HttpResponse,RouteData,Task>) |
Adds a route to the IRouteBuilder that only matches HTTP DELETE requests for the given
|
MapDelete(IRouteBuilder, String, RequestDelegate) |
Adds a route to the IRouteBuilder that only matches HTTP DELETE requests for the given
|
MapGet(IRouteBuilder, String, Action<IApplicationBuilder>) |
Adds a route to the IRouteBuilder that only matches HTTP GET requests for the given
|
MapGet(IRouteBuilder, String, Func<HttpRequest,HttpResponse,RouteData,Task>) |
Adds a route to the IRouteBuilder that only matches HTTP GET requests for the given
|
MapGet(IRouteBuilder, String, RequestDelegate) |
Adds a route to the IRouteBuilder that only matches HTTP GET requests for the given
|
MapMiddlewareDelete(IRouteBuilder, String, Action<IApplicationBuilder>) |
Adds a route to the IRouteBuilder that only matches HTTP DELETE requests for the given
|
MapMiddlewareGet(IRouteBuilder, String, Action<IApplicationBuilder>) |
Adds a route to the IRouteBuilder that only matches HTTP GET requests for the given
|
MapMiddlewarePost(IRouteBuilder, String, Action<IApplicationBuilder>) |
Adds a route to the IRouteBuilder that only matches HTTP POST requests for the given
|
MapMiddlewarePut(IRouteBuilder, String, Action<IApplicationBuilder>) |
Adds a route to the IRouteBuilder that only matches HTTP PUT requests for the given
|
MapMiddlewareRoute(IRouteBuilder, String, Action<IApplicationBuilder>) |
Adds a route to the IRouteBuilder for the given |
MapMiddlewareVerb(IRouteBuilder, String, String, Action<IApplicationBuilder>) |
Adds a route to the IRouteBuilder that only matches HTTP requests for the given
|
MapPost(IRouteBuilder, String, Action<IApplicationBuilder>) |
Adds a route to the IRouteBuilder that only matches HTTP POST requests for the given
|
MapPost(IRouteBuilder, String, Func<HttpRequest,HttpResponse,RouteData,Task>) |
Adds a route to the IRouteBuilder that only matches HTTP POST requests for the given
|
MapPost(IRouteBuilder, String, RequestDelegate) |
Adds a route to the IRouteBuilder that only matches HTTP POST requests for the given
|
MapPut(IRouteBuilder, String, Action<IApplicationBuilder>) |
Adds a route to the IRouteBuilder that only matches HTTP PUT requests for the given
|
MapPut(IRouteBuilder, String, Func<HttpRequest,HttpResponse,RouteData,Task>) |
Adds a route to the IRouteBuilder that only matches HTTP PUT requests for the given
|
MapPut(IRouteBuilder, String, RequestDelegate) |
Adds a route to the IRouteBuilder that only matches HTTP PUT requests for the given
|
MapRoute(IRouteBuilder, String, Action<IApplicationBuilder>) |
Adds a route to the IRouteBuilder for the given |
MapRoute(IRouteBuilder, String, RequestDelegate) |
Adds a route to the IRouteBuilder for the given |
MapVerb(IRouteBuilder, String, String, Action<IApplicationBuilder>) |
Adds a route to the IRouteBuilder that only matches HTTP requests for the given
|
MapVerb(IRouteBuilder, String, String, Func<HttpRequest,HttpResponse,RouteData,Task>) |
Adds a route to the IRouteBuilder that only matches HTTP requests for the given
|
MapVerb(IRouteBuilder, String, String, RequestDelegate) |
Adds a route to the IRouteBuilder that only matches HTTP requests for the given
|