如何检查wp7应用程序上是否存在URL?

时间:2013-08-22 03:59:22

标签: c# windows-phone-7 windows-phone-8

我想为我的应用加载图片。 我知道获取图像所需的确切URL。如何检查URL是否存在?

1 个答案:

答案 0 :(得分:0)

你使用这样的东西。

bool result = false;
    using (WebClient client = new WebClient())
    {
        try
        {
            Stream stream = client.OpenRead(url);
            if (stream != null)
            {
                result = true;
            }
            else
            {
                result = false;
            }
        }
        catch
        {
            //Any exception will returns false.
            result = false;
        }
    }
    return result;

当您使用WP7时,您可能需要查看异步版本。

来源:http://www.dotnetthoughts.net/how-to-check-remote-file-exists-using-c/