将 Observable.FromEvent 与 WebClient.DownloadProgressChanged 结合使用

发布于 2024-10-14 19:26:33 字数 764 浏览 2 评论 0 原文

我正在尝试使用响应式扩展 (Rx) 订阅 WebClient.DownloadProgressChanged。据我所知,因为 DownloadProgressChanged 使用自定义委托类型,所以我需要使用真正冗长的 FromEvent 重载:

var progress = Observable.FromEvent<DownloadProgressChangedEventHandler,
                                    DownloadProgressChangedEventArgs>(
                   h => new DownloadProgressChangedEventHandler(h), 
                   h => client.DownloadProgressChanged += h,
                   h => client.DownloadProgressChanged -= h);

但是, 的类型ProgressIObservable,而不是预期的 IObservable>

我做错了什么?

I'm attempting to use Reactive Extensions (Rx) to subscribe to WebClient.DownloadProgressChanged. As far as I can work out, because DownloadProgressChanged uses a custom delegate type, I need to use the really long-winded FromEvent overload:

var progress = Observable.FromEvent<DownloadProgressChangedEventHandler,
                                    DownloadProgressChangedEventArgs>(
                   h => new DownloadProgressChangedEventHandler(h), 
                   h => client.DownloadProgressChanged += h,
                   h => client.DownloadProgressChanged -= h);

However, the type of progress is IObservable<IEvent>, rather than the expected IObservable<IEvent<DownloadProgressChangedEventArgs>>.

What am I doing wrong?

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

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

发布评论

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

评论(1

桃扇骨 2024-10-21 19:26:33

我刚刚对此进行了测试,进度是

   IObservable<IEvent<DownloadProgressChangedEventArgs>>.

您使用的 Rx 版本是什么?我刚刚使用最新版本(v1.0.2838.0)进行了测试

I've just tested this and progress is of type

   IObservable<IEvent<DownloadProgressChangedEventArgs>>.

What version of Rx are you using? I've just tested using the latest version (v1.0.2838.0)

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