Class WaitForCommString
A class that represents a VHI WaitForCommString command.
Inherited Members
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI.Command
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
[Serializable]
public class WaitForCommString : Command
Constructors
WaitForCommString(string, int, int)
Constructs a new WaitForCommString command.
Declaration
public WaitForCommString(string text, int timeout, int count)
Parameters
Type | Name | Description |
---|---|---|
string | text | the string to wait for |
int | timeout | the maximum time to wait in seconds |
int | count | the number of times the string must be found |
See Also
Properties
Count
Gets the count.
Declaration
public virtual int Count { get; }
Property Value
Type | Description |
---|---|
int | the number of times the string must be found |
See Also
Name
Gets the command name.
Declaration
public override string Name { get; }
Property Value
Type | Description |
---|---|
string | the command name |
Overrides
See Also
Text
Gets the text.
Declaration
public virtual string Text { get; }
Property Value
Type | Description |
---|---|
string | the string to wait for |
See Also
Timeout
Gets the timeout.
Declaration
public virtual int Timeout { get; }
Property Value
Type | Description |
---|---|
int | the maximum time to wait in seconds |