Initializes a new instance of FieldSetter.

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

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	field As FieldInfo, _
	clazz As Type, _
	name As String _
)
C#
public FieldSetter(
	FieldInfo field,
	Type clazz,
	string name
)
Visual C++
public:
FieldSetter(
	FieldInfo^ field, 
	Type^ clazz, 
	String^ name
)
JavaScript
NHibernate.Property.FieldSetter = function(field, clazz, name);

Parameters

field
Type: System.Reflection..::.FieldInfo
The FieldInfo for reflection.
clazz
Type: System..::.Type
The Type that contains the Field to use for the Property set.
name
Type: System..::.String
The name of the Field.

See Also