Get the Type for the named property of a type.

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

Syntax

C#
public static Type ReflectedPropertyClass(
	Type theClass,
	string name,
	string access
)
Visual Basic
Public Shared Function ReflectedPropertyClass ( _
	theClass As Type, _
	name As String, _
	access As String _
) As Type
Visual C++
public:
static Type^ ReflectedPropertyClass(
	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 Type for the named property.

See Also