Initializes a new instance of ReflectionBasedDriver with type names that are loaded from the specified assembly.

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

Syntax

C#
protected ReflectionBasedDriver(
	string driverAssemblyName,
	string connectionTypeName,
	string commandTypeName
)
Visual Basic
Protected Sub New ( _
	driverAssemblyName As String, _
	connectionTypeName As String, _
	commandTypeName As String _
)
Visual C++
protected:
ReflectionBasedDriver(
	String^ driverAssemblyName, 
	String^ connectionTypeName, 
	String^ commandTypeName
)

Parameters

driverAssemblyName
Type: System..::..String
Assembly to load the types from.
connectionTypeName
Type: System..::..String
Connection type name.
commandTypeName
Type: System..::..String
Command type name.

See Also