异步 CTP 和 Windows Azure 支持
快速提问,无法通过 google 找到答案...
Windows Azure 平台支持 Async CTP 吗?
这是复制引用的问题吗?
Quick question, couldn't find a answer via google...
Does the Windows Azure platform support Async CTP?
Is it a matter of copying references?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以安装异步 CTP,然后创建引用它的 Azure 项目。异步 CTP 库位于我的文档 - Microsoft Visual Studio 异步 CTP - 示例下。
只需将常规 AsyncCtpLibrary.dll 用于 Web 或辅助角色即可。我相信它会默认复制到您的 bin 文件夹中。
可以使用 async/await 模式,因为它只是编译器转换。对于异步方法没有特殊的 CLR 支持。具有异步方法的异步 CTP 程序在常规 .NET 4.0 运行时上运行。
You can install the Async CTP and then create an Azure project that references it. The Async CTP libraries are under My Documents - Microsoft Visual Studio Async CTP - Samples.
Just use the regular AsyncCtpLibrary.dll for web or worker roles. I believe it'll be copied by default into your bin folder.
The async/await pattern can be used because it is only a compiler transformation. There is no special CLR support for async methods. Async CTP programs that have async methods run on the regular .NET 4.0 runtime.