SignalCollectionTrueForAll Method |
Determines whether every signal in the collection
matches the conditions defined by the specified predicate.
Namespace:
AGI.Foundation.Communications
Assembly:
AGI.Foundation.Communications (in AGI.Foundation.Communications.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public bool TrueForAll(
Predicate<Signal> match
)
Public Function TrueForAll (
match As Predicate(Of Signal)
) As Boolean
public:
bool TrueForAll(
Predicate<Signal^>^ match
)
member TrueForAll :
match : Predicate<Signal> -> bool
Parameters
- match
- Type: SystemPredicateSignal
The delegate defining the conditions to check against.
Return Value
Type:
Boolean if every signal in the collection matches the
conditions defined by the specified predicate, or if the list has no elements; otherwise
.
See Also