When implemented by a class, gets the value of the Property/Field from the object.

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

Syntax

Visual Basic (Declaration)
Function Get ( _
	target As Object _
) As Object
C#
Object Get(
	Object target
)
Visual C++
Object^ Get(
	Object^ target
)
JavaScript
function get(target);

Parameters

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

Return Value

The value of the Property for the target.

Exceptions

ExceptionCondition
NHibernate..::.PropertyAccessException Thrown when there is a problem getting the value from the target.

See Also