|
This online help file is for EFT Server version 6.2.x. For other versions of EFT Server, please refer to http://help.globalscape.com/help/index.html. (If the Index and Contents are hidden, click Show Contents pane in the top left corner of this topic.) |
|
This interface is available in EFT Server 6.1. |
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.
ICIEventInfo::Type read-only property allows retrieving EventType enumeration value corresponding to this event:
HRESULT Type([out, retval] EventType* pVal);
Example (VBScript):
If Event.Type = OnTimer Then
MsgBox "Event type: Timer"
End If
ICIEventInfo::Name read-only property allows retrieving human-readable name of this event.
HRESULT Name([out, retval] BSTR* pVal);
Example (VBScript):
MsgBox "Event: " & Event.Name