Extended Binding ListTFind All Method
Retrieve all of the items that match the conditions defined by the specified predicate
Definition
Namespace: EWSoftware.PDI.Binding
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
Returns an ExtendedBindingListT containing all of the items that match the conditions defined by the specified predicate. If none are found, the collection will be empty.
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
C#
public ExtendedBindingList<T> FindAll(
Predicate<T> match
)VB
Public Function FindAll (
match As Predicate(Of T)
) As ExtendedBindingList(Of T)C++
public:
ExtendedBindingList<T>^ FindAll(
Predicate<T>^ match
)F#
member FindAll :
match : Predicate<'T> -> ExtendedBindingList<'T> Parameters
- match PredicateT
- The PredicateT delegate that defines the conditions of the match
Return Value
ExtendedBindingListTReturns an ExtendedBindingListT containing all of the items that match the conditions defined by the specified predicate. If none are found, the collection will be empty.