异步 HttpHandler 和 WriteAsync

发布于 2024-12-04 07:44:53 字数 530 浏览 1 评论 0原文

我一直在 Ayende Rahien 的博客 此处 上尝试一些代码,其中演示了如何使用异步 HttpHandler提高可以并发处理的请求数量。

不幸的是我什至可以让基本的例子工作。我收到以下错误:

“System.IO.TextWriter”不包含“WriteAsync”的定义 并且没有扩展方法“WriteAsync”接受第一个参数 可以找到类型“System.IO.TextWriter”(您是否缺少使用 指令还是程序集引用?)

return context.Response.Output.WriteAsync("Hello World!");

我想该方法是 net4 中添加的扩展方法,作为并行扩展的一部分,但是在我的一生中,我可以找到正确的名称空间。

请各位铁杆 csharpers 来透露一下。

I've been experimenting with some code code on Ayende Rahien's blog here which demonstrates using asynchronous HttpHandlers to improve the number of requests that can be processed concurrently.

Unfortunately I can get even the basic example to work. I'm getting the following error:

'System.IO.TextWriter' does not contain a definition for 'WriteAsync'
and no extension method 'WriteAsync' accepting a first argument of
type 'System.IO.TextWriter' could be found (are you missing a using
directive or an assembly reference?)

for the line.

return context.Response.Output.WriteAsync("Hello World!");

I would imagine the method is an extension method added in net4 as part of the Parallel Extensions however for the life of me I can find the correct namespace.

Wouls any of you hardcore csharpers please shed the light.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眼眸里的快感 2024-12-11 07:44:53

我一直在浏览 Scott Hanselman 和 Ayende 的博客,并且感到很困惑。

我的解决方案是安装 Async CTP 并包含对 AsyncCtpLibrary 的引用
这很好地隐藏在我的箱子里
C:\Users\Administrator\Documents\Microsoft Visual Studio Async CTP\Samples

感谢 缺少引用 AsyncCtpLibrary.dll

I've been looking at both Scott Hanselman and Ayende's blog and was scratching my head proper.

My solution was to install the Async CTP and to include a reference to AsyncCtpLibrary
which is well hidden in my case
C:\Users\Administrator\Documents\Microsoft Visual Studio Async CTP\Samples

Kudos to Missing a reference to AsyncCtpLibrary.dll

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文