Adds an IDictionary of configuration properties. The Key is the name of the Property and the Value is the String value of the Property.

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

Syntax

Visual Basic (Declaration)
Public Function AddProperties ( _
	properties As IDictionary _
) As Configuration
C#
public Configuration AddProperties(
	IDictionary properties
)
Visual C++
public:
Configuration^ AddProperties(
	IDictionary^ properties
)
JavaScript
function addProperties(properties);

Parameters

properties
Type: System.Collections..::.IDictionary
An IDictionary of configuration properties.

Return Value

This Configuration object.

See Also