Checks whether this TelnetScript has completed execution of all TelnetTask.
True if all tasks executed, false otherwise.
To check if all tasks have completed for a script, invoke the IsComplete method.
[CS]
// Check if script is complete.
if (script.IsComplete()) {
// other process
}
[Visual Basic]
' Check if script is complete.
If (script.IsComplete()) Then
' other process
End If
TelnetScript Class | Jscape.Telnet Namespace