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

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

Syntax

C#
public static void RemoveInstance(
	string uid,
	string name,
	IDictionary<string, string> properties
)
Visual Basic
Public Shared Sub RemoveInstance ( _
	uid As String, _
	name As String, _
	properties As IDictionary(Of String, String) _
)
Visual C++
public:
static void RemoveInstance(
	String^ uid, 
	String^ name, 
	IDictionary<String^, String^>^ properties
)

Parameters

uid
Type: System..::..String
The identifier of the ISessionFactory.
name
Type: System..::..String
The name of the ISessionFactory.
properties
Type: System.Collections.Generic..::..IDictionary<(Of <(<'String, String>)>)>
The configured properties for the ISessionFactory.

See Also