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) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public Configuration AddProperties(
	IDictionary<string, string> additionalProperties
)
Visual Basic
Public Function AddProperties ( _
	additionalProperties As IDictionary(Of String, String) _
) As Configuration
Visual C++
public:
Configuration^ AddProperties(
	IDictionary<String^, String^>^ additionalProperties
)

Parameters

additionalProperties
Type: System.Collections.Generic..::..IDictionary<(Of <(<'String, String>)>)>
An IDictionary of configuration properties.

Return Value

This Configuration object.

See Also