Checks if this TelnetTask is running.
True if active, false otherwise.
To check if a task is running, invoke the IsRunning method. In this example, the last task (denoted by Tail) is checked if running.
[CS]
// Check if last task is running
while (script.Tail.IsRunning()) {
// other process
}
[Visual Basic]
' Check if last task is running
While (script.Tail.IsRunning())
' other process
End While
TelnetTask Class | Jscape.Telnet Namespace