IsMatchCallbackTEntity Delegate | 
  
    Namespace: 
   AGI.Foundation.Tracking
    Assembly:
   AGI.Foundation.Tracking (in AGI.Foundation.Tracking.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic delegate bool IsMatchCallback<TEntity>(
	Transaction transaction,
	TEntity entity
)
where TEntity : class, IEntityIdentifier
Public Delegate Function IsMatchCallback(Of TEntity As {Class, IEntityIdentifier}) ( 
	transaction As Transaction,
	entity As TEntity
) As Booleangeneric<typename TEntity>
where TEntity : ref class, IEntityIdentifier
public delegate bool IsMatchCallback(
	Transaction^ transaction, 
	TEntity entity
)
type IsMatchCallback = 
    delegate of 
        transaction : Transaction * 
        entity : 'TEntity -> boolParameters
- transaction
 - Type: AGI.FoundationTransaction
The transaction to use to retrieve entity values. - entity
 - Type: TEntity
The entity to be filtered. 
Type Parameters
- TEntity
 - The type of entity.
 
Return Value
Type: 
Boolean if the entity meets the filter criteria; otherwise 
.
See Also