Class AsyncItemSearchEventArgs
Event args for Items
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 Async
Declaration
public AsyncItemSearchEventArgs(IEnumerable<object> result)
Parameters
System. The found items after search matches. |
AsyncItemSearchEventArgs(IEnumerable<Object>, Boolean, AggregateException)
Initializes a new instance of the Async
Declaration
public AsyncItemSearchEventArgs(IEnumerable<object> result, bool isCanceled, AggregateException error)
Parameters
System. The found items after search matches. |
System. Indicates whether the search has canceled or not. |
System. The error for cancellation.. |
Properties
Error
The error for cancellation.
Declaration
public AggregateException Error { get; }
Property Value
System.
|
IsCanceled
Indicates whether the search has canceled or not.
Declaration
public bool IsCanceled { get; }
Property Value
System.
|
Result
The found items after search completes.
Declaration
public IEnumerable<object> Result { get; }
Property Value
System.
|