ClassAsyncItemSearchEventArgs
Class
Event args for ItemsFound event.
Definition
Namespace:Telerik.Windows.Controls.Primitives
Assembly:Telerik.Windows.Controls.dll
Syntax:
cs-api-definition
public class AsyncItemSearchEventArgs : EventArgs
Inheritance: objectEventArgsAsyncItemSearchEventArgs
Inherited Members
Constructors
AsyncItemSearchEventArgs(IEnumerable<object>)
Initializes a new instance of the AsyncItemSearchEventArgs class when search has completed successfully.
Declaration
cs-api-definition
public AsyncItemSearchEventArgs(IEnumerable<object> result)
Parameters
result
The found items after search matches.
AsyncItemSearchEventArgs(IEnumerable<object>, bool, AggregateException)
Initializes a new instance of the AsyncItemSearchEventArgs class.
Declaration
cs-api-definition
public AsyncItemSearchEventArgs(IEnumerable<object> result, bool isCanceled, AggregateException error)
Parameters
result
The found items after search matches.
isCanceled
Indicates whether the search has canceled or not.
error
The error for cancellation..
Properties
Error
The error for cancellation.
Declaration
cs-api-definition
public AggregateException Error { get; }
Property Value
IsCanceled
Indicates whether the search has canceled or not.
Result
The found items after search completes.
Declaration
cs-api-definition
public IEnumerable<object> Result { get; }
Property Value