ClassLoadedDataEventArgs
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
Entities
Gets all the top-level entities that were loaded.
Declaration
public IEnumerable Entities { get; }
Property Value
The top-level entities that were loaded.
HasError
Gets a value indicating whether the operation has failed.
Declaration
public bool HasError { get; }
Property Value
true if the operation failed; otherwise, false.
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
true if the error has been marked as handled; otherwise, false.
TotalEntityCount
Gets the total entity count for the load operation.
Declaration
public int TotalEntityCount { get; }
Property Value
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()