Class WaitForCondition
A class that represents a VHI WaitForCondition command.
Inherited Members
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI.Command
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
[Serializable]
public class WaitForCondition : Command
Constructors
WaitForCondition(string, string, int)
Constructs a new WaitForCondition command.
Declaration
public WaitForCondition(string entity, string condition, int timeout)
Parameters
| Type | Name | Description |
|---|---|---|
| string | entity | the name of the entity to use as the context for the expression. |
| string | condition | the expression to wait for |
| int | timeout | the maximum time to wait in seconds |
See Also
Properties
Condition
Gets the condition.
Declaration
public virtual string Condition { get; }
Property Value
| Type | Description |
|---|---|
| string | the expression to wait for |
See Also
Entity
Gets the entity.
Declaration
public virtual string Entity { get; }
Property Value
| Type | Description |
|---|---|
| string | the name of the entity to use as the context for the expression |
See Also
Name
Gets the command name.
Declaration
public override string Name { get; }
Property Value
| Type | Description |
|---|---|
| string | the command name |
Overrides
See Also
Timeout
Gets the timeout
Declaration
public virtual int Timeout { get; }
Property Value
| Type | Description |
|---|---|
| int | the maximum time to wait in seconds |