Click or drag to resize

EntityPropertySetter<TEntity> 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: 25.1.421.0 (25.1.421.0)
Syntax
public delegate void EntityPropertySetter<TEntity>(
	Transaction transaction,
	TEntity entity,
	Object value
)

Parameters

transaction
Type: AGI.Foundation.Transaction
The transaction to use to set the entity's property.
entity
Type: TEntity
The entity on which to set the value.
value
Type: System.Object
The new property value.

Type Parameters

TEntity
The type of the entity.
See Also