Process.WaitForInputIdle Method
.NET Framework 1.1
Causes the Process component to wait for the associated process to enter an idle state.
Overload List
Causes the Process component to wait indefinitely for the associated process to enter an idle state. This overload applies only to processes with a user interface and, therefore, a message loop.
[Visual Basic] Overloads Public Function WaitForInputIdle() As Boolean
[C#] public bool WaitForInputIdle();
[C++] public: bool WaitForInputIdle();
[JScript] public function WaitForInputIdle() : Boolean;
Causes the Process component to wait the specified number of milliseconds for the associated process to enter an idle state. This overload applies only to processes with a user interface and, therefore, a message loop.
[Visual Basic] Overloads Public Function WaitForInputIdle(Integer) As Boolean
[C#] public bool WaitForInputIdle(int);
[C++] public: bool WaitForInputIdle(int);
[JScript] public function WaitForInputIdle(int) : Boolean;
See Also
Process Class | Process Members | System.Diagnostics Namespace