如何防止webexception消息?

时间:2016-07-20 11:28:45

标签: c# winforms exception exception-handling

我的C#windows表单应用程序从网址下载一个短字符串。它解析字符串并显示信息。它纯粹用于此。一个弹出程序的排序。我正在使用这个:

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

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

1 个答案:

答案 0 :(得分:0)

使用{/ 3}}块结构,如

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 }
}