.NET Session

参考

ASP.NET Core 中的会话 | Microsoft Learn

依赖下载

Microsoft.AspNetCore.Session

image.png

服务注册

image.png

使用

添加

HttpContext.Session.SetString("key", "value");

image.png

获取

HttpContext.Session.GetString("key");

image.png