SignalCollectionFind Method |
Searches for a signal that matches the conditions defined by the specified
predicate, and returns the first occurrence within the collection.
Namespace:
AGI.Foundation.Communications
Assembly:
AGI.Foundation.Communications (in AGI.Foundation.Communications.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public Signal Find(
Predicate<Signal> match
)
Public Function Find (
match As Predicate(Of Signal)
) As Signal
public:
Signal^ Find(
Predicate<Signal^>^ match
)
member Find :
match : Predicate<Signal> -> Signal
Parameters
- match
- Type: SystemPredicateSignal
The delegate that defines the conditions of the signal to search for.
Return Value
Type:
Signal
The first element that matches the conditions defined by the specified predicate,
if found; otherwise
BaseSignal.
See Also