Checks whether this TelnetScript has completed execution of all TelnetTask.
Namespace: Jscape.TelnetAssembly: 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
CopyIsComplete

// Check if script is complete. if (script.IsComplete()) { // other process }

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