Interface IOperationMetaData
The methods and properties in the OperationMetaData class manage operation metadata.
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
public interface IOperationMetaData : IMetaData
Remarks
The methods and properties in the OperationMetaData class manage operation metadata.
Properties
AltDestinations
Gets a list of the alternate destinations for an operation.
Declaration
IList<string> AltDestinations { get; }
Property Value
Type | Description |
---|---|
IList<string> | list of strings - each item is a string that contains the name of an entity in the VHI model |
Remarks
Gets a list of the alternate destinations for an operation.
AttributesUsed
Gets a list of the attributes used in an operation.
Declaration
IList<string> AttributesUsed { get; }
Property Value
Type | Description |
---|---|
IList<string> | List of strings - each item is a string that contains a name of an attribute in the VHI model |
Remarks
Gets a list of the attributes used in an operation.
Destination
Gets the destination entity for an operation.
Declaration
string Destination { get; }
Property Value
Type | Description |
---|---|
string | The destination entity for an operation. |
Remarks
Gets the destination entity for an operation.
IsDefault
Gets whether the operation is the default operation for the entity.
Declaration
bool IsDefault { get; }
Property Value
Type | Description |
---|---|
bool | This property returns whether the operation is the default operation for the entity. |
Remarks
Gets whether the operation is the default operation for the entity.
Timeout
Gets an operation's timeout value (in seconds).
Declaration
int Timeout { get; }
Property Value
Type | Description |
---|---|
int | This property returns an operation's timeout value (in seconds). |
Remarks
Gets an operation's timeout value (in seconds).
VariablesUsed
Gets a list of the variables used in an operation.
Declaration
IList<string> VariablesUsed { get; }
Property Value
Type | Description |
---|---|
IList<string> | List of string - each item is a string that contains the name of a variable in the VHI model |
Remarks
Gets a list of the variables used in an operation.
Methods
ToString()
Generates a string object that represents the current values of this IOperationMetaData object.
Declaration
string ToString()
Returns
Type | Description |
---|---|
string | the string representation of this object |