将 webclient 与 Gmail 结合使用时出错
这是代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信您所说的错误是“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.