Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 838 Bytes

ComponentPredicate_T_(T).md

File metadata and controls

28 lines (18 loc) · 838 Bytes

ComponentPredicate(T) Delegate

Represents the method that defines a set of criteria and determines whether the specified component meets those criteria.

public delegate bool ComponentPredicate<T>(in T value);

Type parameters

T

The type of the component to compare.

Parameters

value T

The component value.

Returns

System.Boolean
true if the component meets the criteria; otherwise, false.