Provides a snapshot VIEW in the form of a List of the contents of the IdentityMap. You can safely iterate over this VIEW and modify the actual IdentityMap because the VIEW is a copy of the contents, not a reference to the existing Map. Contains a copy (not that actual instance stored) of the DictionaryEntries in a List.

Namespace:  NHibernate.Util
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public ReadOnly Property EntryList As IList
C#
public IList EntryList { get; }
Visual C++
public:
property IList^ EntryList {
	IList^ get ();
}
JavaScript
function get_entryList();

See Also