这是我糟糕的技能能够挖掘到的唯一文档:https://learn.microsoft.com/en-us/aspnet/web-api/overview/advanced/http-cookies
但这不适用于System.Web.Http.ApiController
'HttpRequestHeaders' does not contain a definition for 'GetCookies'
我确定这很简单,但是文档要么很难搜索,要么我只是找不到它 - 谢谢!
我可以像这样在Web API中使用cookie
var cookie = Request.Headers.GetCookies("Username");
您是否包括using System.Net.Http;