DOFUncaughtExceptionListenerremoved Method OpenDOF Object Access Library
Called when the UncaughtExceptionListener is removed from the DOF.

Namespace: org.opendof.core.oal
Assembly: dof-oal (in dof-oal.dll) Version: 7.0.1.2
Syntax

C#
void removed(
	DOF dof,
	DOFException exception
)

Parameters

dof
Type: org.opendof.core.oalDOF
The DOF where this listener was added. This will never be null.
exception
Type: org.opendof.core.oalDOFException
An exception that caused the listener to be removed prematurely. This will be null if the application removed the listener normally.
Remarks

Called when the UncaughtExceptionListener is removed from the DOF. Use this method to free resources associated with the listener.

Unlike other

removed
methods, this one is not guaranteed to be called in any order with respect to the uncaughtException(DOF, string, System.Thread, System.Exception) call.
See Also

Reference