When implemented by a class, create a "setter" for the mapped property.
Namespace: NHibernate.PropertiesAssembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)
Syntax
| C# |
|---|
ISetter GetSetter( Type theClass, string propertyName ) |
| Visual Basic |
|---|
Function GetSetter ( _ theClass As Type, _ propertyName As String _ ) As ISetter |
| Visual C++ |
|---|
ISetter^ GetSetter( Type^ theClass, String^ propertyName ) |
Parameters
- theClass
- Type: System..::..Type
The Type to find the Property in.
- propertyName
- Type: System..::..String
The name of the mapped Property to set.
Return Value
The ISetter to use to set the value of the Property on an instance of the Type.
Exceptions
| Exception | Condition |
|---|---|
| NHibernate..::..PropertyNotFoundException | Thrown when a Property specified by the propertyName could not be found in the Type. |