 | CompoundEntitiesTEntityFilter Delegate |
Delegate for AllowEntity property.
Namespace: Slash.Application.SystemsAssembly: Slash.Application (in Slash.Application.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic delegate bool EntityFilter(
int entityId,
T entity
)
Public Delegate Function EntityFilter (
entityId As Integer,
entity As T
) As Boolean
public delegate bool EntityFilter(
int entityId,
T entity
)
type EntityFilter =
delegate of
entityId : int *
entity : 'T -> bool
Parameters
- entityId
- Type: SystemInt32
Id of entity that wants to be added. - entity
- Type: T
Entity that wants to be added.
Return Value
Type:
BooleanTrue if the entity should be added; otherwise, false.
See Also