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
Constructors
Initializes a new instance of the DataProviderStatusChangedEventArgs class.
C#
public DataProviderStatusChangedEventArgs(DataProviderStatus oldStatus, DataProviderStatus newStatus, bool resultsChanges, Exception error)
The old status.
newStatusDataProviderStatusThe new status.
resultsChangesboolDataProvider results have changed if set to true.
Exception if available .
Properties
Gets the new status.
C#
public DataProviderStatus NewStatus { get; }
The new status.
Gets the old status.
C#
public DataProviderStatus OldStatus { get; }
The new status.
Gets a value indicating whether the results of the data provider have changed.
C#
public bool ResultsChanged { get; }
true if results have changed; otherwise, false.