Interface IAsyncItemSearch
Provides interface for async item search using a predicate match.
Inherited Members
Namespace: Telerik.Windows.Controls.Primitives
Assembly: Telerik.Windows.Controls.dll
Syntax
public interface IAsyncItemSearch : IValueRetriever
Methods
FindItems(Predicate<Object>)
Used a match predicate to find searched items.
Declaration
void FindItems(Predicate<object> match)
Parameters
System.Predicate<System.Object>
match
The match predicate. |
Events
ItemsFound
Occurs when the items search completes.
Declaration
event EventHandler<AsyncItemSearchEventArgs> ItemsFound
Event Type
System.EventHandler<AsyncItemSearchEventArgs>
|