如何阻止webexception消息

本文关键字:消息 webexception 何阻止 | 更新日期: 2023-09-27 17:57:54

我的C#窗体应用程序从url下载一个短字符串。它解析字符串并显示信息。它纯粹用于此。有点像弹出式程序。我使用的是:

using (WebClient wc = new WebClient())
{
string json = wc.DownloadString(url);
//parse the string
//show windows form with the gathered data 
this.Show()
}

我的问题是,当没有互联网连接时,会弹出未处理的异常错误。我认为我需要防止这个错误消息,并保持程序滚动,直到连接恢复。如何阻止消息并保持其运行?

如何阻止webexception消息

使用类似的try .. catch块构造

using (WebClient wc = new WebClient())
{
try {
string json = wc.DownloadString(url);
//parse the string
//show windows form with the gathered data 
this.Show()
}
catch(exception ex) { //Log the exception with datetime }
}