A persistent wrapper for an IList

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

Syntax

Visual Basic (Declaration)
<SerializableAttribute> _
Public Class PersistentList _
	Inherits AbstractPersistentCollection _
	Implements IList, ICollection, IEnumerable
C#
[SerializableAttribute]
public class PersistentList : AbstractPersistentCollection, 
	IList, ICollection, IEnumerable
Visual C++
[SerializableAttribute]
public ref class PersistentList : public AbstractPersistentCollection, 
	IList, ICollection, IEnumerable
JavaScript
NHibernate.Collection.PersistentList = function();

Type.createClass(
	'NHibernate.Collection.PersistentList',
	NHibernate.Collection.AbstractPersistentCollection,
	IList,
	ICollection,
	IEnumerable);

Remarks

The underlying collection used in an ArrayList.

Inheritance Hierarchy

System..::.Object
  NHibernate.Collection..::.AbstractPersistentCollection
    NHibernate.Collection..::.PersistentList

See Also