IDataConversionMonitor.ProcessMessage
Method
Description:
The default implementation ignores input and always returns true. The using app should override the behavior as necessary. Some examples of overridden behavior are 1. Someone is developing a classic Revit add-on that imports STEP AP 203 solids.
The default implementation ignores input and always returns true. The using app should override the behavior as necessary. Some examples of overridden behavior are 1. Someone is developing a classic Revit add-on that imports STEP AP 203 solids.
Syntax
bool ProcessMessage(
DataExchangeMessageId messageId,
DataExchangeMessageSeverity messageSeverity,
IList<string> entityIds
)
Parameters
| Parameter | Type | Description |
|---|---|---|
| messageId | DataExchangeMessageId | Indicates a specific event during data conversion. |
| messageSeverity | DataExchangeMessageSeverity | Indicates a severity of the event. |
| entityIds | IList | Input objects affected by the reported event. |
Return Value
| Type | Description |
|---|---|
| Boolean | If the function returns true, the import API will continue conversion. Otherwise, it will be cancelled and all intermediate data reset. |