gpt4 book ai didi

c# - System.Web.HttpContext.Current 不存在

转载 作者:太空狗 更新时间:2023-10-29 20:09:44 32 4
gpt4 key购买 nike

我正在尝试使用 visual studio 2015 在 asp.net mvc 应用程序中获取有关我的用户的一些信息。

当我尝试从请求中获取信息时

    System.Web.HttpContext.Current req = new System.Web.HttpContext.Current();

我收到错误 错误 CS0426 类型名称“Current”在类型“HttpContext”中不存在

有人知道如何解决这个问题吗?

最佳答案

如果想获取当前上下文

System.Web.HttpContext currentContext = System.Web.HttpContext.Current;

如果你想创建一个(出于某种原因,比如测试)

System.Web.HttpContext newContext = new System.Web.HttpContext(
new System.Web.HttpRequest("", "http://example.com", ""),
new System.Web.HttpResponse(new System.IO.StringWriter())
);

关于c# - System.Web.HttpContext.Current 不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32789926/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com