设置 cookie 选项

Setting up cookie options

创建简单的方法,似乎 'cookieOptions' 函数不起作用,我正在获取其参考先决条件的堆栈。

我可以知道需要导入什么参考或模块才能启用此功能

这里是示例方法:

public void SetCookie(string key, string value, int? expireTime)
{
    CookieOptions option = new CookieOptions(); /// => Missing reference here      
}

这是返回错误:

'CookieOptions' could not be found (are you missing a using directive or an assembly reference?)

任何suggestions/commentsTIA

我假设您使用的是 net core(.net 框架中没有这样的东西)

命名空间:

Microsoft.AspNetCore.Http

程序集:

Microsoft.AspNetCore.Http.Features.dll

https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.cookieoptions?view=aspnetcore-3.0

.net 框架的程序集名称 Microsoft.AspNet.Http.CookieOptions 如果你编写 .net 核心代码,你可以使用这个 Microsoft.AspNetCore.Http