日常生活的交流与学习

首页 新随笔 联系 管理

2024年4月27日 #

摘要: dotnet-6-basic-authentication-api/Entities/User.cs namespace WebApi.Entities; using System.Text.Json.Serialization; public class User { public int Id 阅读全文
posted @ 2024-04-27 21:10 lazycookie 阅读(18) 评论(0) 推荐(0) 编辑

摘要: middleware的编写和注册 编写中间件类(middleware-class) 通常,中间件封装在类中,并且通过扩展方法公开。 具有类型为 RequestDelegate 的参数的公共构造函数。 public LoggingMiddleware(RequestDelegate next) { _ 阅读全文
posted @ 2024-04-27 20:56 lazycookie 阅读(10) 评论(0) 推荐(0) 编辑