Click or drag to resize

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.1.418.0 (24.1.418.0)
Syntax
public delegate Object EntityPropertyGetter<TEntity>(
	Transaction transaction,
	TEntity entity
)

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: Object
The property value.
See Also