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.253-beta+ffb7163c9e3b771705bc5b9aa3f09870f2cb9e2c
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