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,
	Nullable<int> length
)
Visual Basic
Public Shared Function HeuristicType ( _
	typeName As String, _
	parameters As IDictionary(Of String, String), _
	length As Nullable(Of Integer) _
) As IType
Visual C++
public:
static IType^ HeuristicType(
	String^ typeName, 
	IDictionary<String^, String^>^ parameters, 
	Nullable<int> length
)

Parameters

typeName
Type: System..::..String
the type name
parameters
Type: System.Collections.Generic..::..IDictionary<(Of <(<'String, String>)>)>
parameters for the type
length
Type: System..::..Nullable<(Of <(<'Int32>)>)>
optionally, the size of the type

Return Value

[Missing <returns> documentation for "M:NHibernate.Type.TypeFactory.HeuristicType(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Nullable{System.Int32})"]

See Also