Called immediately after instantiation

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

Syntax

Visual Basic (Declaration)
Sub PostInstantiate ( _
	persistentClass As Type, _
	interfaces As ISet, _
	getIdentifierMethod As MethodInfo, _
	setIdentifierMethod As MethodInfo _
)
C#
void PostInstantiate(
	Type persistentClass,
	ISet interfaces,
	MethodInfo getIdentifierMethod,
	MethodInfo setIdentifierMethod
)
Visual C++
void PostInstantiate(
	Type^ persistentClass, 
	ISet^ interfaces, 
	MethodInfo^ getIdentifierMethod, 
	MethodInfo^ setIdentifierMethod
)
JavaScript
function postInstantiate(persistentClass, interfaces, getIdentifierMethod, setIdentifierMethod);

Parameters

persistentClass
Type: System..::.Type
interfaces
Type: ISet
getIdentifierMethod
Type: System.Reflection..::.MethodInfo
setIdentifierMethod
Type: System.Reflection..::.MethodInfo

See Also