Called before any elements are read into the collection, allowing appropriate initializations to occur.

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

Syntax

Visual Basic (Declaration)
Sub BeforeInitialize ( _
	persister As ICollectionPersister _
)
C#
void BeforeInitialize(
	ICollectionPersister persister
)
Visual C++
void BeforeInitialize(
	ICollectionPersister^ persister
)
JavaScript
function beforeInitialize(persister);

Parameters

persister
Type: NHibernate.Persister.Collection..::.ICollectionPersister
The ICollectionPersister for this persistent collection.

See Also