Configure this instance, given the values of parameters specified by the user as <param> elements. This method is called just once, followed by instantiation.

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

Syntax

C#
void Configure(
	IType type,
	IDictionary<string, string> parms,
	Dialect dialect
)
Visual Basic
Sub Configure ( _
	type As IType, _
	parms As IDictionary(Of String, String), _
	dialect As Dialect _
)
Visual C++
void Configure(
	IType^ type, 
	IDictionary<String^, String^>^ parms, 
	Dialect^ dialect
)

Parameters

type
Type: NHibernate.Type..::..IType
The IType the identifier should be.
parms
Type: System.Collections.Generic..::..IDictionary<(Of <(<'String, String>)>)>
An IDictionary of Param values that are keyed by parameter name.
dialect
Type: NHibernate.Dialect..::..Dialect
The Dialect to help with Configuration.

See Also