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.Responding

Gets a value indicating whether or not the user interface of the process is responding.

[Visual Basic]
Public ReadOnly Property Responding As Boolean
[C#]
public bool Responding {get;}
[C++]
public: __property bool get_Responding();
[JScript]
public function get Responding() : Boolean;

Property Value

true if the user interface of the associated process is responding to the system; otherwise, false.

Remarks

Responding contacts the interface of a process that has a user interface to determine if the process is responding to user input. If the interface does not respond immediately, Responding returns false. Use this property to determine whether the interface of the associated process has stopped responding.

If the process does not have a MainWindowHandle, this property returns true.

See Also

Process Class | Process Members | System.Diagnostics Namespace | MainWindowHandle