Opalis Quick Integration Kit 3.0
Returns a new collection containing all of the values that satisfy each and every condition for a specific filter.

Namespace:  Opalis.QuickIntegrationKit
Assembly:  Opalis.QuickIntegrationKit(in Opalis.QuickIntegrationKit.dll) Version: 3.0.0.0 (3.1.0.1)

Syntax

C#
ICollection<T> 
Filter<T>(
	
string 
name,
	
IEnumerable<T> 
values
)
Visual Basic (Declaration)
Function 
Filter(
Of T) ( _
	
name 
As 
String, _
	
values 
As 
IEnumerable(
Of T) _
) 
As 
ICollection(
Of T)
Visual C++
generic<
typename T>
ICollection<T>^ 
Filter(
	
String^ 
name, 
	
IEnumerable<T>^ 
values
)

Parameters

name
Type: System . . :: . String
The name of the filter to test with.
values
Type: System.Collections.Generic . . :: . IEnumerable < (Of < ( T > ) > )
The values to be filtered.

Type Parameters

T
The type of object to filter.

Return Value

A new collection containing the objects that satisfy the filter conditions.

See Also