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  
Filter(
	
string 
name,
	
IEnumerable 
values
)
Visual Basic (Declaration)
Function 
Filter ( _
	
name 
As 
String, _
	
values 
As 
IEnumerable _
) 
As 
ICollection 
Visual C++
ICollection ^ 
Filter(
	
String^ 
name, 
	
IEnumerable ^ 
values
)

Parameters

name
Type: System . . :: . String
The name of the filter to test with.
values
Type: System.Collections . . :: . IEnumerable
The values to be filtered.

Return Value

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

See Also