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