Interface IFilter
Defines a contract for filtering objects based on custom criteria.
Namespace: Telerik.Maui.Controls.Compatibility.Common
Assembly: Telerik.Maui.Controls.Compatibility.dll
Syntax
public interface IFilter
Methods
PassesFilter(Object)
Determines whether the specified item passes the filter criteria.
Declaration
bool PassesFilter(object item)
Parameters
System.Object
item
The item to evaluate against the filter. |
Returns
System.Boolean
true if the item passes the filter; otherwise, false. |