Click or drag to resize

SignalCollection.RemoveSignals Method

Creates a new SignalCollection by removing 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 RemoveSignals(
	Predicate<Signal> match
)

Parameters

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

Return Value

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