我使用此代码从 Internet 获取图像
var image = new BitmapImage();
image.BeginInit();
image.CacheOption = BitmapCacheOption.OnLoad;
image.CreateOptions = BitmapCreateOptions.IgnoreImageCache;
image.UriSource = new Uri(url, UriKind.Absolute);
image.EndInit();
RSSImage.Source = image;
有时没有图像。
似乎是由于超时等原因而发生的。
无论如何,我使用了一些异步。及时获取图像的方法?
有什么线索吗?