中间件

In ASP.NET Core you compose your request pipeline using Middleware. ASP.NET Core middleware performs asynchronous logic on an HttpContext and then either invokes the next middleware in the sequence or terminates the request directly. You generally “Use” middleware by invoking a corresponding UseXYZ extension method on the IApplicationBuilder in the Configure method.

在 ASP.NET Core中你可以使用中间件来构建你的请求管道。 ASP.NET Core 中间件通过一个 HttpContext 来执行异步逻辑之后或者执行队列中的下一个中间件或者直接终止请求。 你一般可以通过在配置方法中调用 IApplicationBuilder 相应的 UserXYZ 扩展方法来使用中间件。

ASP.NET Core comes with a rich set of prebuilt middleware:

ASP.NET Core 伴随着一套丰富的内建的中间件:

  • 静态文件
  • 路由
  • 认证

你也可以命名你的 自定义中间件。使用 ASP.NET Core 你可以使用任意一个 OWIN 为基础的中间件。 查看 .Net平台 开放 Web 接口 了解详情。

results matching ""

    No results matching ""