如何使用.net 4.0實現對HttpResponse.Flush()方法的異步調用& VS2013?如何使HttpResponse.Flush()異步?
我想代表:
var caller = new AsyncFlush(context.Response.Flush);
var result1 = caller.BeginInvoke(null, null);
caller.EndInvoke(result1);
然後任務:
Task.Factory.StartNew(() => context.Response.Flush()).Start();
終於螺紋:
new Thread(new ThreadStart(() => context.Response.Flush()).Start();
但每一種情況下似乎沖洗拉爾文件時凍結我的Internet Explorer(1GB + )。任何想法?
問候。
我正在使用C#;) – Giglagla
'BackgroundWorker'可能嗎? – Pseudonym
你能更具體地說明你在哪裏使用這段代碼? Asp.net的形式/ MVC/WebApi /處理程序等,以便它可以得到精確回答。 – vendettamit