Class EventInfo
Immutable object that provides information about an event in progress.
Inherited Members
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
[Serializable]
public class EventInfo
Constructors
EventInfo(EventHandlerType, string, string)
Constructs a new EventInfo object.
Declaration
public EventInfo(EventHandlerType type, string className, string methodName)
Parameters
Type | Name | Description |
---|---|---|
EventHandlerType | type | Type |
string | className | ClassName |
string | methodName | MethodName |
Properties
ClassName
Gets the name of the event handler class for the event.
Declaration
public virtual string ClassName { get; }
Property Value
Type | Description |
---|---|
string | The class name |
HandlerType
Gets the event handler type.
Declaration
public virtual EventHandlerType HandlerType { get; }
Property Value
Type | Description |
---|---|
EventHandlerType | A value from the EventHandlerType enumeration. |
MethodName
Gets the name of the method on the event handler class.
Declaration
public virtual string MethodName { get; }
Property Value
Type | Description |
---|---|
string | The method name |