Click or drag to resize

ProcessQueueTFindAll Method

Retrieves all elements that match the conditions defined by the specified predicate.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.248-beta+a497a19de709fd99e2448886199a2c8824265ddf
Syntax
public virtual List<T> FindAll(
	Predicate<T> match
)
View Source

Parameters

match  PredicateT
The Predicate delegate that defines the conditions of the elements to search for.

Return Value

ListT
A generic list containing all elements that match the conditions defined by the specified predicate, if found; otherwise, an empty list.
Exceptions
ExceptionCondition
ArgumentNullExceptionmatch is null.
See Also