将 webclient 与 Gmail 结合使用时出错

发布于 2024-11-01 21:47:14 字数 225 浏览 3 评论 0原文

这是代码:

response =
    Encoding.UTF8.GetString(
       objClient.DownloadData("https://mail.google.com/mail/feed/atom")
    );

这是我得到的错误(异常): WebClient 不支持当前的 i/o 操作,

该异常的原因可能是什么?

This is the code:

response =
    Encoding.UTF8.GetString(
       objClient.DownloadData("https://mail.google.com/mail/feed/atom")
    );

And this is the error (exception) I get:
WebClient does not support current i/o operation

what could be the reason for that exception?

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

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

发布评论

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

评论(1

两相知 2024-11-08 21:47:14

我相信您所说的错误是“WebClient 不支持 *con*当前 I/O 操作”。

当您尝试从单个 WebClient 实例同时发出多个请求时,会导致此异常。如果要发出并发请求,请创建一个新的 WebClient 实例。

I believe the error you're talking about is "WebClient does not support *con*current I/O operations".

This exception is caused when you try to make multiple requests at the same time from a single WebClient instance. If you want to make concurrent requests, create a new WebClient instance.

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