'Declaration
Public Shared Function FilterAsync(Of T As Class)( _ ByVal dataCollection As C1DataCollection(Of T), _ ByVal filterPath As Expression(Of Func(Of T,Object)), _ ByVal filterOperation As FilterOperation, _ ByVal value As Object _ ) As Task
public static Task FilterAsync<T>( C1DataCollection<T> dataCollection, Expression<Func<T,object>> filterPath, FilterOperation filterOperation, object value ) where T: class
Parameters
- dataCollection
- The data collection.
- 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