如果等待一秒后进程未完成,则重启进程

时间:2013-10-01 10:57:09

标签: vb.net

如果进程超过我指定的时间,是否可以重新启动进程?例如,如果响应进程超过重新启动的进程10秒,我就会生成一个响应头。

'time limit = 10 second
'if the process exceed time limit than restart the process

Dim request As System.Net.webrequest = System.Net.HttpWebRequest.Create(URL)
request.Method = "HEAD"
Dim response As System.Net.WebResponse = request.GetResponse()

1 个答案:

答案 0 :(得分:0)

是的,请尝试使用timeout属性。 Here是示例代码的链接。这将允许您捕获WebException异常。