FailureHandlingOptions
Description:
Options to control how failures (if any occurred during the transaction) should be handled at the time the transaction is being ended.
Options to control how failures (if any occurred during the transaction) should be handled at the time the transaction is being ended.
Inheritance Hierarchy:
System.Object
Autodesk.Revit.DB.FailureHandlingOptions
System.Object
Autodesk.Revit.DB.FailureHandlingOptions
public class FailureHandlingOptions : IDisposable
| Name | Return Type | Description |
|---|---|---|
| Dispose() | None | Releases all resources used by the |
| GetClearAfterRollback() | bool | Obtains the flag indicating if all posted failures should be removed silently when transaction is being rolled back. |
| GetDelayedMiniWarnings() | bool | Obtains the flag indicating if showing of mini-warning dialog should be delayed until the end of next transaction. |
| GetFailuresPreprocessor() | IFailuresPreprocessor | Gets the callback to be invoked in the beginning of failure processing. |
| GetForcedModalHandling() | bool | Obtains the flag indicating if the error handling dialog shown at the end of the failing transaction should be modal. |
| GetTransactionFinalizer() | ITransactionFinalizer | Gets the callback to be executed after transaction is completed. |
| SetClearAfterRollback(Boolean) | This FailureHandlingOptions object. | Sets a flag indicating that Revit should clear all posted failures silently when the failing transaction is being rolled back intentionally. If not set, the failures may still be displayed to the user during rollback. |
| SetDelayedMiniWarnings(Boolean) | This FailureHandlingOptions object. | Sets a flag indicating if Revit should delay the display of the mini-warning dialog (if one is to be shown as a result of warnings in the current transaction) until the end of the next transaction. |
| SetFailuresPreprocessor(IFailuresPreprocessor) | This FailureHandlingOptions object. | Sets the callback to be invoked in the beginning of failure processing. |
| SetForcedModalHandling(Boolean) | This FailureHandlingOptions object. | Sets a flag indicating whether Revit will show a modal (blocking) error dialog if the transaction failed to finish. |
| SetTransactionFinalizer(ITransactionFinalizer) | This FailureHandlingOptions object. | Sets the callback to be executed after the transaction is completed. |
| Name | Return Type | Description |
|---|---|---|
| IsValidObject | bool | Specifies whether the .NET object represents a valid Revit entity. |