NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Process.WaitForInputIdle

Instructs the Process component to wait for the associated process to enter an idle state.

Overload List

Causes the Process component to wait the specified number of milliseconds for the associated process to enter an idle state. This is only applicable for processes with a user interface, 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;

Instructs the Process component to wait indefinitely for the associated process to enter an idle state. This is only applicable for processes with a user interface, 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;

See Also

Process Class | Process Members | System.Diagnostics Namespace