.NetCore 简单的使用中间件

2021-04-22 19:29

阅读:639

标签:syn   style   return   定义   etc   扩展方法   uil   使用   invoke   

//定义中间件

app.Use(next =>
{
       return new RequestDelegate(async c =>
      {
    await c.Response.WriteAsync("start-88888888888");
    await next.Invoke(c);
    await c.Response.WriteAsync("end-88888888888");
      });
});

 

中间件我们通常是把上面的方法给提出来并放在一个class类里面,并进一步使用扩展方法中 IApplicationBuilder:

.NetCore 简单的使用中间件

标签:syn   style   return   定义   etc   扩展方法   uil   使用   invoke   

原文地址:https://www.cnblogs.com/Fengge518/p/12242435.html


评论


亲,登录后才可以留言!