What makes something be a request feature in ASP.NET Core?

百般思念 提交于 2019-12-05 07:58:09

My initial understanding about this was that request features are all things a server should expose to be used on the application pipeline. That is, behaviors that a server should perform like sending a file.

That's one use of http features. It's also a way to augment or light up behaviors on the HttpContext, like buffering, send file, authentication, websockets.

Middleware can also add features specific to that middleware, you can see examples of this:

Generally it's a way to flow per request behavior and state from the server, through middleware, to the application.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!