Reconstruct an object from the cacheable representation. At the very least this method should perform a deep copy if the type is mutable. (optional operation)

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

Syntax

Visual Basic (Declaration)
Function Assemble ( _
	cached As Object, _
	owner As Object _
) As Object
C#
Object Assemble(
	Object cached,
	Object owner
)
Visual C++
Object^ Assemble(
	Object^ cached, 
	Object^ owner
)
JavaScript
function assemble(cached, owner);

Parameters

cached
Type: System..::.Object
the object to be cached
owner
Type: System..::.Object
the owner of the cached object

Return Value

a reconstructed object from the cachable representation

See Also