ExtendedBindingList<T>.FindAll Method
Retrieve all of the items that match the conditions defined by the specified predicate
Namespace: EWSoftware.PDI.BindingAssembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
public ExtendedBindingList<T> FindAll(
Predicate<T> match
)
Public Function FindAll (
match As Predicate(Of T)
) As ExtendedBindingList(Of T)
public:
ExtendedBindingList<T>^ FindAll(
Predicate<T>^ match
)
member FindAll :
match : Predicate<'T> -> ExtendedBindingList<'T>
- match Predicate<T>
- The Predicate<T> delegate that defines the conditions of the match
ExtendedBindingList<T>Returns an
ExtendedBindingList<T> containing all of the items that match the
conditions defined by the specified predicate. If none are found, the collection will be empty.