New to Telerik UI for WPFStart a free 30-day trial

Provides data for the LoadedData event.

Definition

Namespace:Telerik.Windows.Controls.DataServices

Assembly:Telerik.Windows.Controls.DataServices.dll

Syntax:

C#
public sealed class LoadedDataEventArgs : AsyncCompletedEventArgs

Inheritance: objectEventArgsAsyncCompletedEventArgsLoadedDataEventArgs

Inherited Members AsyncCompletedEventArgs.CancelledAsyncCompletedEventArgs.ErrorAsyncCompletedEventArgs.UserStateEventArgs.Empty

Properties

Gets all the top-level entities that were loaded.

C#
public IEnumerable Entities { get; }
Property Value:

The top-level entities that were loaded.

Gets a value indicating whether the operation has failed.

C#
public bool HasError { get; }
Property Value:

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.

C#
public bool IsErrorHandled { get; }
Property Value:

true if the error has been marked as handled; otherwise, false.

Gets the total entity count for the load operation.

C#
public int TotalEntityCount { get; }
Property Value:

The total entity count for the load operation.

Methods

For a failed operation, marks the error as handled so the exception is not thrown.

C#
public void MarkErrorAsHandled()