Returns the type of a property, given it's name (the last part) and the full path.

Namespace: NHibernate.Hql.Ast.ANTLR.Tree
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public virtual IType GetPropertyType(
	string propertyName,
	string propertyPath
)
Visual Basic
Public Overridable Function GetPropertyType ( _
	propertyName As String, _
	propertyPath As String _
) As IType
Visual C++
public:
virtual IType^ GetPropertyType(
	String^ propertyName, 
	String^ propertyPath
)

Parameters

propertyName
Type: System..::..String
The last part of the full path to the property.
propertyPath
Type: System..::..String
The full property path.

Return Value

The type

See Also