Class
LoadedDataEventArgs

Provides data for the LoadedData event.

Definition

Namespace:Telerik.Windows.Controls.DataServices

Assembly:Telerik.Windows.Controls.DataServices.dll

Syntax:

cs-api-definition
public sealed class LoadedDataEventArgs : AsyncCompletedEventArgs

Inheritance: objectEventArgsAsyncCompletedEventArgsLoadedDataEventArgs

Inherited Members AsyncCompletedEventArgs.CancelledAsyncCompletedEventArgs.ErrorAsyncCompletedEventArgs.UserStateEventArgs.Empty

Properties

Entities

Gets all the top-level entities that were loaded.

Declaration

cs-api-definition
public IEnumerable Entities { get; }

Property Value

IEnumerable

The top-level entities that were loaded.

HasError

Gets a value indicating whether the operation has failed.

Declaration

cs-api-definition
public bool HasError { get; }

Property Value

bool

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

cs-api-definition
public bool IsErrorHandled { get; }

Property Value

bool

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

TotalEntityCount

Gets the total entity count for the load operation.

Declaration

cs-api-definition
public int TotalEntityCount { get; }

Property Value

int

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

cs-api-definition
public void MarkErrorAsHandled()