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