Initializes a new instance of BasicGetter.

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

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	clazz As Type, _
	property As PropertyInfo, _
	propertyName As String _
)
C#
public BasicGetter(
	Type clazz,
	PropertyInfo property,
	string propertyName
)
Visual C++
public:
BasicGetter(
	Type^ clazz, 
	PropertyInfo^ property, 
	String^ propertyName
)
JavaScript
NHibernate.Property.BasicGetter = function(clazz, property, propertyName);

Parameters

clazz
Type: System..::.Type
The Type that contains the Property get.
property
Type: System.Reflection..::.PropertyInfo
The PropertyInfo for reflection.
propertyName
Type: System..::.String
The name of the Property.

See Also