Interface IAtmWait
VHI does not have asynchronous calls. Functions always execute synchronously, and then return a Wait object with the result. To access the result, invoke the Wait method or use the Value property.
Namespace: Attachmate.Verastream.HostIntegrator.EAO2V
Assembly: Attachmate.Verastream.HostIntegrator.EAO2V.dll
Syntax
[ComVisible(true)]
public interface IAtmWait
Properties
Changed
VHI does not have asynchronous calls; always true.
Declaration
bool Changed { get; }
Property Value
Type | Description |
---|---|
bool |
Enabled
VHI does not have asynchronous calls; always true.
Declaration
bool Enabled { get; set; }
Property Value
Type | Description |
---|---|
bool |
Value
VHI does not have asynchronous calls; returns the result.
Declaration
bool Value { get; }
Property Value
Type | Description |
---|---|
bool |
Methods
Wait(int)
VHI does not have asynchronous calls. Functions always execute synchronously, and then return a Wait object with the result.
Declaration
bool Wait(int inTimeOut)
Parameters
Type | Name | Description |
---|---|---|
int | inTimeOut | ignored. |
Returns
Type | Description |
---|---|
bool | The result from the call. |