Sets the value of the configuration property.

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

Syntax

Visual Basic (Declaration)
Public Function SetProperty ( _
	name As String, _
	value As String _
) As Configuration
C#
public Configuration SetProperty(
	string name,
	string value
)
Visual C++
public:
Configuration^ SetProperty(
	String^ name, 
	String^ value
)
JavaScript
function setProperty(name, value);

Parameters

name
Type: System..::.String
The name of the property.
value
Type: System..::.String
The value of the property.

Return Value

This configuration object.

See Also