Gets the value of the Property from the object.

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

Syntax

Visual Basic (Declaration)
Public Function Get ( _
	target As Object _
) As Object
C#
public Object Get(
	Object target
)
Visual C++
public:
virtual Object^ Get(
	Object^ target
) sealed
JavaScript
function get(target);

Parameters

target
Type: System..::.Object
The object to get the Property value from.

Return Value

The value of the Property for the target.

Implements

IGetter..::.Get(Object)

See Also