Class LoadedDataEventArgs
Provides data for the LoadedData event.
Inheritance
Namespace: Telerik.Windows.Controls.DataServices
Assembly: Telerik.Windows.Controls.DataServices.dll
Syntax
public sealed class LoadedDataEventArgs : AsyncCompletedEventArgs
Properties
Entities
Gets all the top-level entities that were loaded.
Declaration
public IEnumerable Entities { get; }
Property Value
System.Collections.IEnumerable
The top-level entities that were loaded. |
HasError
Gets a value indicating whether the operation has failed.
Declaration
public bool HasError { get; }
Property Value
System.Boolean
|
IsErrorHandled
Gets a value indicating whether the operation error has been marked as handled by calling the MarkErrorAsHandled method.
Declaration
public bool IsErrorHandled { get; }
Property Value
System.Boolean
|
TotalEntityCount
Gets the total entity count for the load operation.
Declaration
public int TotalEntityCount { get; }
Property Value
System.Int32
The total entity count for the load operation. |
Methods
MarkErrorAsHandled()
For a failed operation, marks the error as handled so the exception is not thrown.
Declaration
public void MarkErrorAsHandled()