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

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

Syntax

C#
public static IType ReflectedPropertyType(
	Type theClass,
	string name,
	string access
)
Visual Basic
Public Shared Function ReflectedPropertyType ( _
	theClass As Type, _
	name As String, _
	access As String _
) As IType
Visual C++
public:
static IType^ ReflectedPropertyType(
	Type^ theClass, 
	String^ name, 
	String^ 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