我正在调用第三方应用程序,它“有时”在VB.NET中运行(它是一个自托管的WCF)。但有时第三方应用程序将永远挂起,所以我已经添加了一个90秒的计时器。问题是,我怎么知道事情是否超时?
代码如下所示:
Dim MyProcess as System.Diagnostics.Process = System.Diagnostics.Process.Start(MyInfo)
MyProcess.WaitForExit(90000)
我想做的是这样的事情
If MyProcess.ExceededTimeout Then
MyFunction = False
Else
MyFunction = True
End If
有什么想法吗?
谢谢,
杰森
答案 0 :(得分:5)
过去已经存在一些问题,即使用WaitForExit时应用会冻结。
您需要使用
dim Output as String = MyProcess.StandardOutput.ReadToEnd()
之前打电话
MyProcess.WaitForExit(90000)
请参阅Microsoft的代码段:
// Start the child process.
Process p = new Process();
// Redirect the output stream of the child process.
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.FileName = "Write500Lines.exe";
p.Start();
// Do not wait for the child process to exit before
// reading to the end of its redirected stream.
// p.WaitForExit();
// Read the output stream first and then wait.
string output = p.StandardOutput.ReadToEnd();
p.WaitForExit();
http://msdn.microsoft.com/en-us/library/system.diagnostics.process.standardoutput.aspx
答案 1 :(得分:4)
检查方法返回值 - http://msdn.microsoft.com/en-us/library/ty0d8k56.aspx - 如果调用超时,则返回False。
答案 2 :(得分:1)
if(process.WaitForExit(timeout)) {
// user exited
} else {
// timeout (perhaps process.Kill();)
}