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

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

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	driverAssemblyName As String, _
	connectionTypeName As String, _
	commandTypeName As String _
)
C#
public ReflectionBasedDriver(
	string driverAssemblyName,
	string connectionTypeName,
	string commandTypeName
)
Visual C++
public:
ReflectionBasedDriver(
	String^ driverAssemblyName, 
	String^ connectionTypeName, 
	String^ commandTypeName
)
JavaScript
NHibernate.Driver.ReflectionBasedDriver = function(driverAssemblyName, connectionTypeName, 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