Click or drag to resize

EntityPropertySetterTEntity Delegate

Represents a method to set the value of a property on an entity.

Namespace:  AGI.Foundation.Tracking
Assembly:  AGI.Foundation.Tracking (in AGI.Foundation.Tracking.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public delegate void EntityPropertySetter<TEntity>(
	Transaction transaction,
	TEntity entity,
	Object value
)

Parameters

transaction
Type: AGI.FoundationTransaction
The transaction to use to set the entity's property.
entity
Type: TEntity
The entity on which to set the value.
value
Type: SystemObject
The new property value.

Type Parameters

TEntity
The type of the entity.
See Also