如何在wp7应用程序上检查url是否存在
本文关键字:检查 url 是否 存在 程序上 应用程序 wp7 应用 | 更新日期: 2023-09-27 18:28:38
我想为我的应用程序加载一个图像。我知道获取图像所需的确切URL。如何检查URL是否存在?
您使用这样的东西。
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/