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