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

Event data for the StatusChanged event of all IDataProvider types.

Definition

Namespace:Telerik.Pivot.Core

Assembly:Telerik.WinControls.PivotGrid.dll

Syntax:

C#
public class DataProviderStatusChangedEventArgs : EventArgs

Inheritance: objectEventArgsDataProviderStatusChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the DataProviderStatusChangedEventArgs class.

C#
public DataProviderStatusChangedEventArgs(DataProviderStatus oldStatus, DataProviderStatus newStatus, bool resultsChanges, Exception error)
Parameters:oldStatusDataProviderStatus

The old status.

newStatusDataProviderStatus

The new status.

resultsChangesbool

DataProvider results have changed if set to true.

errorException

Exception if available .

Properties

Gets or sets the error.

C#
public Exception Error { get; }
Property Value:

The error.

Gets the new status.

C#
public DataProviderStatus NewStatus { get; }
Property Value:

The new status.

Gets the old status.

C#
public DataProviderStatus OldStatus { get; }
Property Value:

The new status.

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

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

true if results have changed; otherwise, false.