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

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

Syntax

Visual Basic (Declaration)
Public Shared Function HeuristicType ( _
	typeName As String, _
	parameters As IDictionary _
) As IType
C#
public static IType HeuristicType(
	string typeName,
	IDictionary parameters
)
Visual C++
public:
static IType^ HeuristicType(
	String^ typeName, 
	IDictionary^ parameters
)
JavaScript
NHibernate.Type.TypeFactory.heuristicType = function(typeName, parameters);

Parameters

typeName
Type: System..::.String
the type name
parameters
Type: System.Collections..::.IDictionary
parameters for the type

Return Value

An instance of NHibernate.Type.IType

See Also