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.2.419.0 (24.2.419.0)
Syntax public delegate void EntityPropertySetter<TEntity>(
Transaction transaction,
TEntity entity,
Object value
)
Public Delegate Sub EntityPropertySetter(Of TEntity) (
transaction As Transaction,
entity As TEntity,
value As Object
)
generic<typename TEntity>
public delegate void EntityPropertySetter(
Transaction^ transaction,
TEntity entity,
Object^ value
)
type EntityPropertySetter =
delegate of
transaction : Transaction *
entity : 'TEntity *
value : Object -> unit
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