Click or drag to resize

EntityTransactedPropertyGetter<TEntity, T> Delegate

Represents a method to get a transacted 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 TransactedProperty<T> EntityTransactedPropertyGetter<TEntity, T>(
	TEntity entity
)

Parameters

entity
Type: TEntity
The entity on which to get the transacted property.

Type Parameters

TEntity
The type of the entity.
T
The type of the transacted property.

Return Value

Type: TransactedProperty<T>
A TransactedProperty<T>.
See Also