DOFRegistrationListenerremoved Method OpenDOF Object Access Library
Called when the Listener is removed from the DOFRegistration.

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

C#
void removed(
	DOFRegistration registration,
	DOFException exception
)

Parameters

registration
Type: org.opendof.core.oalDOFRegistration
The DOFRegistration 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 Listener is removed from the DOFRegistration. Use this method to free resources associated with the listener. The eventSignaled(DOFRegistration, DOFObjectID, System.Collections.Generic.IList<E>) callback will not be called after the listener is removed.
See Also

Reference