Get the NHibernate IType for the named property of the Type.

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

Syntax

Visual Basic (Declaration)
Public Shared Function ReflectedPropertyType ( _
	theClass As Type, _
	name As String, _
	access As String _
) As IType
C#
public static IType ReflectedPropertyType(
	Type theClass,
	string name,
	string access
)
Visual C++
public:
static IType^ ReflectedPropertyType(
	Type^ theClass, 
	String^ name, 
	String^ access
)
JavaScript
NHibernate.Util.ReflectHelper.reflectedPropertyType = function(theClass, name, access);

Parameters

theClass
Type: System..::.Type
The Type to find the Property in.
name
Type: System..::.String
The name of the property/field to find in the class.
access
Type: System..::.String
The name of the property accessor for the property.

Return Value

The NHibernate IType for the named property.

See Also