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.282-beta+fbfa6baa1521236175f6d73fb2eb151a42453aef
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