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)

Syntax

Visual Basic (Declaration)
Sub Configure ( _
	type As IType, _
	parms As IDictionary, _
	d As Dialect _
)
C#
void Configure(
	IType type,
	IDictionary parms,
	Dialect d
)
Visual C++
void Configure(
	IType^ type, 
	IDictionary^ parms, 
	Dialect^ d
)
JavaScript
function configure(type, parms, d);

Parameters

type
Type: NHibernate.Type..::.IType
The IType the identifier should be.
parms
Type: System.Collections..::.IDictionary
An IDictionary of Param values that are keyed by parameter name.
d
Type: NHibernate.Dialect..::.Dialect
The Dialect to help with Configuration.

See Also