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) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
Object Assemble(
	Object cached,
	Object owner
)
Visual Basic
Function Assemble ( _
	cached As Object, _
	owner As Object _
) As Object
Visual C++
Object^ Assemble(
	Object^ cached, 
	Object^ 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