Removes the Instance of the SessionFactory from the local "cache".

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

Syntax

Visual Basic (Declaration)
Public Shared Sub RemoveInstance ( _
	uid As String, _
	name As String, _
	properties As IDictionary _
)
C#
public static void RemoveInstance(
	string uid,
	string name,
	IDictionary properties
)
Visual C++
public:
static void RemoveInstance(
	String^ uid, 
	String^ name, 
	IDictionary^ properties
)
JavaScript
NHibernate.Impl.SessionFactoryObjectFactory.removeInstance = function(uid, name, properties);

Parameters

uid
Type: System..::.String
The identifier of the ISessionFactory.
name
Type: System..::.String
The name of the ISessionFactory.
properties
Type: System.Collections..::.IDictionary
The configured properties for the ISessionFactory.

See Also