0

如果流程超过我指定的时间,我可以重新启动流程吗?例如,我制作了一个响应标头,如果响应过程超过 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()
4

1 回答 1

0

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

于 2013-10-01T21:00:49.383 回答