EntityPropertyGetterTEntity Delegate |
Represents a method to get 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 Object EntityPropertyGetter<TEntity>(
Transaction transaction,
TEntity entity
)
Public Delegate Function EntityPropertyGetter(Of TEntity) (
transaction As Transaction,
entity As TEntity
) As Object
generic<typename TEntity>
public delegate Object^ EntityPropertyGetter(
Transaction^ transaction,
TEntity entity
)
type EntityPropertyGetter =
delegate of
transaction : Transaction *
entity : 'TEntity -> Object
Parameters
- transaction
- Type: AGI.FoundationTransaction
The transaction to use to get the entity's property. - entity
- Type: TEntity
The entity on which to get the value.
Type Parameters
- TEntity
- The type of the entity.
Return Value
Type:
ObjectThe property value.
See Also