Return the currently enabled filters. The filter map is keyed by filter name, with values corresponding to the FilterImpl instance.

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

Syntax

C#
IDictionary<string, IFilter> EnabledFilters { get; }
Visual Basic
ReadOnly Property EnabledFilters As IDictionary(Of String, IFilter)
	Get
Visual C++
property IDictionary<String^, IFilter^>^ EnabledFilters {
	IDictionary<String^, IFilter^>^ get ();
}

Return Value

The currently enabled filters.

See Also