The ICIEventInfo interface is used to retrieve information about EFT Server’s events. (Also refer to ICIServer::AvailableEvents property.) The interface provides the set of read-only properties.
interface ICIEventInfo : IDispatch
Members |
How it's used |
Applicable Versions |
Property Name As String read-only |
Name of the event. HRESULT Name([out, retval] BSTR* pVal); Example (VBScript): MsgBox "Event: " & Event.Name |
EFT Server v6.1 and later |
Property type As EventType read-only |
Type of the event. HRESULT Type([out, retval] EventType* pVal); Example (VBScript): If Event.Type = OnTimer Then MsgBox "Event type: Timer" End If Refer to Enumerator Values, Data Types, and Descriptions for details of EventType. |
EFT Server v6.1 and later |