Checks whether this TelnetScript has completed execution of all TelnetTask.

Namespace: Jscape.Telnet
Assembly: Jscape.Telnet (in Jscape.Telnet.dll) Version: 2.6.1.0

Syntax

C#
public bool IsComplete()
Visual Basic
Public Function IsComplete As Boolean
Visual C++
public:
bool IsComplete()

Return Value

True if all tasks executed, false otherwise.

Examples

To check if all tasks have completed for a script, invoke the IsComplete method.
CopyIsComplete
// Check if script is complete.
if (script.IsComplete()) {
    // other process
}

CopyIsComplete
' Check if script is complete.
If (script.IsComplete()) Then
    ' other process
End If

See Also