Initializes a new instance of CollectionAction.

Namespace: NHibernate.Action
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
protected CollectionAction(
	ICollectionPersister persister,
	IPersistentCollection collection,
	Object key,
	ISessionImplementor session
)
Visual Basic
Protected Sub New ( _
	persister As ICollectionPersister, _
	collection As IPersistentCollection, _
	key As Object, _
	session As ISessionImplementor _
)
Visual C++
protected:
CollectionAction(
	ICollectionPersister^ persister, 
	IPersistentCollection^ collection, 
	Object^ key, 
	ISessionImplementor^ session
)

Parameters

persister
Type: NHibernate.Persister.Collection..::..ICollectionPersister
The ICollectionPersister that is responsible for the persisting the Collection.
collection
Type: NHibernate.Collection..::..IPersistentCollection
The Persistent collection.
key
Type: System..::..Object
The identifier of the Collection.
session
Type: NHibernate.Engine..::..ISessionImplementor
The ISessionImplementor that the Action is occurring in.

See Also