VTime Zone CollectionTrue For All Method
Determine if every item in the collection matches the conditions defined by the specified predicate
Definition
Namespace: EWSoftware.PDI.Objects
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
Returns true if every item in the collection matches the conditions defined in the specified predicate or if the collection is empty. It returns false if at least one item does not match the conditions.
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
C#
public bool TrueForAll(
Predicate<VTimeZone> match
)VB
Public Function TrueForAll (
match As Predicate(Of VTimeZone)
) As BooleanC++
public:
bool TrueForAll(
Predicate<VTimeZone^>^ match
)F#
member TrueForAll :
match : Predicate<VTimeZone> -> bool Parameters
- match PredicateVTimeZone
- The PredicateT delegate that defines the conditions to check in each item.
Return Value
BooleanReturns true if every item in the collection matches the conditions defined in the specified predicate or if the collection is empty. It returns false if at least one item does not match the conditions.