Uses heuristics to deduce a NHibernate type given a string naming the type.

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

Syntax

C#
public static IType HeuristicType(
	string typeName,
	IDictionary<string, string> parameters
)
Visual Basic
Public Shared Function HeuristicType ( _
	typeName As String, _
	parameters As IDictionary(Of String, String) _
) As IType
Visual C++
public:
static IType^ HeuristicType(
	String^ typeName, 
	IDictionary<String^, String^>^ parameters
)

Parameters

typeName
Type: System..::..String
the type name
parameters
Type: System.Collections.Generic..::..IDictionary<(Of <(<'String, String>)>)>
parameters for the type

Return Value

An instance of NHibernate.Type.IType

See Also