Class
DataProviderStatusChangedEventArgs

Event data for the StatusChanged event of all IDataProvider types.

Definition

Namespace:Telerik.Pivot.Core

Assembly:Telerik.Pivot.Core.dll

Syntax:

cs-api-definition
public class DataProviderStatusChangedEventArgs : EventArgs

Inheritance: objectEventArgsDataProviderStatusChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

DataProviderStatusChangedEventArgs(DataProviderStatus, DataProviderStatus, bool, Exception)

Initializes a new instance of the DataProviderStatusChangedEventArgs class.

Declaration

cs-api-definition
public DataProviderStatusChangedEventArgs(DataProviderStatus oldStatus, DataProviderStatus newStatus, bool resultsChanges, Exception error)

Parameters

oldStatus

DataProviderStatus

The old status.

newStatus

DataProviderStatus

The new status.

resultsChanges

bool

DataProvider results have changed if set to true.

error

Exception

Exception if available .

Properties

Error

Gets or sets the error.

Declaration

cs-api-definition
public Exception Error { get; }

Property Value

Exception

The error.

NewStatus

Gets the new status.

Declaration

cs-api-definition
public DataProviderStatus NewStatus { get; }

Property Value

DataProviderStatus

The new status.

OldStatus

Gets the old status.

Declaration

cs-api-definition
public DataProviderStatus OldStatus { get; }

Property Value

DataProviderStatus

The new status.

ResultsChanged

Gets a value indicating whether the results of the data provider have changed.

Declaration

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

Property Value

bool

true if results have changed; otherwise, false.