SignalCollection.TrueForAll 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.3.420.0 (24.3.420.0)
Syntaxpublic 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: System.Predicate<Signal>
The delegate defining the conditions to check against.
Return Value
Type:
Booleantrue if every signal in the collection matches the
conditions defined by the specified predicate, or if the list has no elements; otherwise
false.
See Also