异步调用中HttpContext.Current为null解决方法
类别:编程学习 浏览量:1893
时间:2016-10-23 异步调用中HttpContext.Current为null解决方法
异步调用中HttpContext.Current为null解决方法一、异步调用中HttpContext.Current为null的原因
HttpContext.Current是基于System.Runtime.Remoting.Messaging.CallContext这个类,子线程和异步线程都无法访问到主线程在CallContext中保存的数据。所以在异步执行的过程会就会出现HttpContext.Current为null的情况
二、解决方法
为了解决子线程能够得到主线程的HttpContext.Current数据,需要在异步前面就把HttpContext.Current存起来,然后能过参数的形式传递进去
方式1、将HttpContext.Current作为方法的参数(异步开始前)。
方式2、将使用到HttpContext.Current的地方,在异步调用前执行,然后将执行结果作为参数传递下去。
方式3、将HttpContext赋值给BeginXXX方法的最后一个参数(object state)
三、解决实例
public HttpContext context
{
get { return HttpContext.Current; }
set { value = context; }
}
public delegate string delegategetResult(HttpContext context);
protected void Page_Load(object sender, EventArgs e)
{
context = HttpContext.Current;
delegategetResult dgt = testAsync;
IAsyncResult iar = dgt.BeginInvoke(context, null, null);
string result = dgt.EndInvoke(iar);
Response.Write(result);
}
public static string testAsync(HttpContext context)
{
if (context.Application["boolTTS"] == null)
{
Hashtable ht = (Hashtable)context.Application["TTS"];
if (ht == null)
{
ht = new Hashtable();
}
if (ht["A"] == null)
{
ht.Add("A", "A");
}
if (ht["B"] == null)
{
ht.Add("B", "B");
}
context.Application["TTS"] = ht;
}
Hashtable hts = new Hashtable();
hts = (Hashtable)context.Application["TTS"];
if (hts["A"] != null)
{
return "恭喜,中大奖呀";
}
else
{
return "我猜你快中奖了";
}
}
标签:HttpContext
热门推荐
- nginx设置https访问(基于Nginx实现HTTPS网站设置的步骤)
- JS函数前面感叹号的作用
- mysqljoin默认是什么(mysql-joins具体用法说明)
- vueelementui左侧菜单(Vue Element前端应用开发之动态菜单和路由的关联处理)
- mysql千万级别数据查询优化(mysql千万级数据量根据索引优化查询速度的实现)
- mysql 分片键规则(MySql8 WITH RECURSIVE递归查询父子集的方法)
- mysql数据库数据分析(详解MySQL数据库千万级数据查询和存储)
- nginx代理docker容器(Docker Nginx容器制作部署实现方法)
- mysql xml转换json(Mysql将查询结果集转换为JSON数据的实例代码)
- php微信支付怎么做(ThinkPHP框架整合微信支付之Native 扫码支付模式一图文详解)