Interface IModelEvent
Model event information.
Inherited Members
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
public interface IModelEvent : IEvent
Properties
ClientSession
Gets the client session.
Declaration
IClientSession ClientSession { get; }
Property Value
Type | Description |
---|---|
IClientSession | The client session or null if no client is connected. |
Remarks
Gets the client session. This provides information about the currently connected client. If no client is connected this method will return null.
CurrentOperation
Gets the name of the currently running operation.
Declaration
string CurrentOperation { get; }
Property Value
Type | Description |
---|---|
string | The name of the currently running operation or an empty string if none. |
CurrentProcedure
Gets the name of the currently running procedure.
Declaration
string CurrentProcedure { get; }
Property Value
Type | Description |
---|---|
string | The name of the currently running procedure or an empty string if none. |
ModelContext
Gets the model context.
Declaration
IModelContext ModelContext { get; }
Property Value
Type | Description |
---|---|
IModelContext | The model context. |
Remarks
Gets the model context. This provides information about the model for the event.