如何传递HttpContext.当前到.net中使用Parallel.Invoke()调用的方法
本文关键字:Invoke Parallel 调用 方法 HttpContext 何传递 net | 更新日期: 2023-09-27 18:12:51
我有两个方法使用HttpContext。当前获取userID。当我单独调用这些方法时,我获得userID,但是当使用HttpContext Parallel.Invoke()。Current为空。
我知道原因,我只是在寻找工作周围使用,我可以访问HttpContext.Current。我知道这不是线程安全的,但我只想执行读取操作
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Display();
Display2();
Parallel.Invoke(Display, Display2);
}
public void Display()
{
if (HttpContext.Current != null)
{
Response.Write("Method 1" + HttpContext.Current.User.Identity.Name);
}
else
{
Response.Write("Method 1 Unknown" );
}
}
public void Display2()
{
if (HttpContext.Current != null)
{
Response.Write("Method 2" + HttpContext.Current.User.Identity.Name);
}
else
{
Response.Write("Method 2 Unknown");
}
}
}
谢谢
存储对上下文的引用,并将其作为参数传递给方法…
:
protected void Page_Load(object sender, EventArgs e)
{
var ctx = HttpContext.Current;
System.Threading.Tasks.Parallel.Invoke(() => Display(ctx), () => Display2(ctx));
}
public void Display(HttpContext context)
{
if (context != null)
{
Response.Write("Method 1" + context.User.Identity.Name);
}
else
{
Response.Write("Method 1 Unknown");
}
}
public void Display2(HttpContext context)
{
if (context != null)
{
Response.Write("Method 2" + context.User.Identity.Name);
}
else
{
Response.Write("Method 2 Unknown");
}
}