Click or drag to resize

SignalCollection.SelectSignals Method

Creates a new SignalCollection by selecting signals based on a predicate.

Namespace:  AGI.Foundation.Communications
Assembly:  AGI.Foundation.Communications (in AGI.Foundation.Communications.dll) Version: 24.3.420.0 (24.3.420.0)
Syntax
public SignalCollection SelectSignals(
	Predicate<Signal> match
)

Parameters

match
Type: System.Predicate<Signal>
A delegate defining the conditions on a Signal which will add it to the new collection.

Return Value

Type: SignalCollection
The new collection of signals.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when match is null.
See Also