Inject the value of a particular property.

Namespace: NHibernate.Tuple.Entity
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
void SetPropertyValue(
	Object entity,
	int i,
	Object value
)
Visual Basic
Sub SetPropertyValue ( _
	entity As Object, _
	i As Integer, _
	value As Object _
)
Visual C++
void SetPropertyValue(
	Object^ entity, 
	int i, 
	Object^ value
)

Parameters

entity
Type: System..::..Object
The entity into which to inject the value.
i
Type: System..::..Int32
The property's index.
value
Type: System..::..Object
The property value to inject.

See Also