Telnet Factory for .NET

TelnetScript.IsComplete Method 

Checks whether this TelnetScript has completed execution of all TelnetTask.

public bool IsComplete();

Return Value

True if all tasks executed, false otherwise.

Example

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

See Also

TelnetScript Class | Jscape.Telnet Namespace