ComponentOne CollectionView
C1.CollectionView Assembly / C1.CollectionView Namespace / C1CollectionViewEx Class / FilterAsync<T> Method
The collection view.
The path of the data item to which the filter will be applied.
The filter operation.
The value used in the expression.

In This Topic
    FilterAsync<T> Method (C1CollectionViewEx)
    In This Topic
    Filters the data using specified filter parameters.
    Syntax
    'Declaration
     
    Public Shared Function FilterAsync(Of T As Class)( _
       ByVal collectionView As C1CollectionView(Of T), _
       ByVal filterPath As System.Linq.Expressions.Expression(Of Func(Of T,Object)), _
       ByVal filterOperation As FilterOperation, _
       ByVal value As System.Object _
    ) As System.Threading.Tasks.Task
    public static System.Threading.Tasks.Task FilterAsync<T>( 
       C1CollectionView<T> collectionView,
       System.Linq.Expressions.Expression<Func<T,object>> filterPath,
       FilterOperation filterOperation,
       System.object value
    )
    where T: class

    Parameters

    collectionView
    The collection view.
    filterPath
    The path of the data item to which the filter will be applied.
    filterOperation
    The filter operation.
    value
    The value used in the expression.

    Type Parameters

    T
    See Also