Event Data Type
Indicates the data type of the event data content.
Values
Public Enum eEventDataType
None = 0
String = 1
List = 2
Xml = 3
SendEventData = 10
LogObject
StatusReport = 21
CommandOutput = 30
Other = 99
End Enum
| Value | Description |
|---|---|
None | Used to indicate that there is NO event data content for this event detail |
String | Used to indicate that the event data content contains a string |
List | Used to indicate that the event data content contains a string that represents a list of items separated by the default separator |
Xml | Used to indicate that the event data content contains a XML |
SendEventData | Used to indicate that the event data contains a string with event specific information used by the event handler. For most background processes this event data is a XML. |
LogObject | Used to indicate that the event data content contains a XML string that represents a log object |
StatusReport | Used to indicate that the event data content contains a XML string that represents a status report |
CommandOutput | Used to indicate that the event data content contains a string that represents the console (command prompt in Windows) output. This event data type is used to store the publish post processing command output of DITA-OT. |
Other | Used to indicate that the event data content is of an unknown type. This event data type can be used for event data content from a customer specific background processes. |