aspnetcore/src/Http
Ryan Nowak 127bc7ddd3
Fixes: #4597 Parse URI path with an endpoint (#9728)
Adds functionality to parse a URI path given a way to
find an endpoint. This is the replacement for various machinications
using the global route collection and `RouteData.Routers` in earlier
versions.

For now I'm just adding a way to do this using Endpoint Name since it's
a pretty low level feature. Endpoint Name is also very direct, so it
feels good for something like this.
2019-05-02 21:11:59 -07:00
..
Authentication.Abstractions Remove API check baselines and related project settings (#9846) 2019-04-30 14:58:13 -07:00
Authentication.Core Remove API check baselines and related project settings (#9846) 2019-04-30 14:58:13 -07:00
Headers Seal some internal derived classes (#9880) 2019-05-01 10:29:05 -07:00
Http Seal some internal derived classes (#9880) 2019-05-01 10:29:05 -07:00
Http.Abstractions Seal some internal derived classes (#9880) 2019-05-01 10:29:05 -07:00
Http.Extensions Remove API check baselines and related project settings (#9846) 2019-04-30 14:58:13 -07:00
Http.Features Remove API check baselines and related project settings (#9846) 2019-04-30 14:58:13 -07:00
Owin Remove API check baselines and related project settings (#9846) 2019-04-30 14:58:13 -07:00
Routing Fixes: #4597 Parse URI path with an endpoint (#9728) 2019-05-02 21:11:59 -07:00
Routing.Abstractions Remove API check baselines and related project settings (#9846) 2019-04-30 14:58:13 -07:00
WebUtilities Seal some internal derived classes (#9880) 2019-05-01 10:29:05 -07:00
perf/Microbenchmarks
samples/SampleApp
HttpAbstractions.sln
README.md
build.cmd
startvs.cmd

README.md

Http Abstractions

This folders contains projects for HTTP abstractions for ASP.NET Core such as HttpContext, HttpRequest, HttpResponse and RequestDelegate.

It also contains IApplicationBuilder and extensions to create and compose your application's pipeline.