IFileSearchProvider
Interface
Provides file / folder search in the windows file system.
Definition
Namespace:Telerik.Windows.Controls.FileSearch
Assembly:Telerik.Windows.Controls.dll
Syntax:
C#
public interface IFileSearchProvider
Derived Classes:
Properties
Settings for customizing the search operation.
C#
SearchSettings SearchSettings { get; }
Methods
Cancels the current search asynchronously. Should be invoked when search string is changed.
C#
void CancelCurrentSearchAsync()
Stops the current search operation and releases the resources.
C#
void StopSearch()
Events
Fires when search is completed automatically or by the user via cancellation.
C#
event EventHandler<FileSearchCompletedEventArgs> FileSearchCompleted
Fires when chunk (portion) of files is found.
C#
event EventHandler<FileSearchProgressChangedEventArgs> FileSearchProgressChanged