ClassDataProviderStatusChangedEventArgs
Class
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
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
The old status.
newStatus
The new status.
resultsChanges
DataProvider results have changed if set to true.
error
Exception if available .
Properties
Error
Gets or sets the error.
NewStatus
Gets the new status.
Declaration
cs-api-definition
public DataProviderStatus NewStatus { get; }
Property Value
The new status.
OldStatus
Gets the old status.
Declaration
cs-api-definition
public DataProviderStatus OldStatus { get; }
Property Value
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
true if results have changed; otherwise, false.