Return the Underlying Persistent Object in a given ISession, or null.

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

Syntax

Visual Basic (Declaration)
Public Function GetImplementation ( _
	s As ISessionImplementor _
) As Object
C#
public Object GetImplementation(
	ISessionImplementor s
)
Visual C++
public:
Object^ GetImplementation(
	ISessionImplementor^ s
)
JavaScript
function getImplementation(s);

Parameters

s
Type: NHibernate.Engine..::.ISessionImplementor
The Session to get the object from.

Return Value

The Persistent Object this proxy is Proxying, or nullNothingnullptra null reference (Nothing in Visual Basic).

See Also