Defines the default evict event listener used by hibernate for evicting entities in response to generated flush events. In particular, this implementation will remove any hard references to the entity that are held by the infrastructure (references held by application or other persistent instances are okay)

Namespace: NHibernate.Event.Default
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
[SerializableAttribute]
public class DefaultEvictEventListener : IEvictEventListener
Visual Basic
<SerializableAttribute> _
Public Class DefaultEvictEventListener _
	Implements IEvictEventListener
Visual C++
[SerializableAttribute]
public ref class DefaultEvictEventListener : IEvictEventListener

Inheritance Hierarchy

System..::..Object
  NHibernate.Event.Default..::..DefaultEvictEventListener

See Also