'Declaration Public Function New( _ ByVal sortDescriptons As IEnumerable(Of SortDescription), _ ByVal filterExpression As FilterExpressionBase, _ ByVal filter As Predicate(Of Object) _ )
'Usage Dim sortDescriptons As IEnumerable(Of SortDescription) Dim filterExpression As FilterExpressionBase Dim filter As Predicate(Of Object) Dim instance As New SelectionRange(sortDescriptons, filterExpression, filter)
public SelectionRange( IEnumerable<SortDescription> sortDescriptons, FilterExpressionBase filterExpression, Predicate<object> filter )
Parameters
- sortDescriptons
One or more SortDescription objects, which will be used to create the data query that is sent to the data source. Must be provided at construction time.
- filterExpression
- The FilterExpressionBase to be used to filter the items server-side. Can be a null reference (Nothing in Visual Basic).
- filter
- The filter predicated to be used to filter the items locally (see Remarks section). Can be a null reference (Nothing in Visual Basic).