Class DataProviderStatusChangedEventArgs
Event data for the StatusChanged event of all IDataProvider types.
Inheritance
Namespace: Telerik.Pivot.Core
Assembly: Telerik.Pivot.Core.dll
Syntax
public class DataProviderStatusChangedEventArgs : EventArgs
Constructors
DataProviderStatusChangedEventArgs(DataProviderStatus, DataProviderStatus, Boolean, Exception)
Initializes a new instance of the DataProviderStatusChangedEventArgs class.
Declaration
public DataProviderStatusChangedEventArgs(DataProviderStatus oldStatus, DataProviderStatus newStatus, bool resultsChanges, Exception error)
Parameters
DataProviderStatus
oldStatus
The old status. |
DataProviderStatus
newStatus
The new status. |
System.Boolean
resultsChanges
DataProvider results have changed if set to |
System.Exception
error
Exception if available . |
Properties
Error
Gets or sets the error.
Declaration
public Exception Error { get; }
Property Value
System.Exception
The error. |
NewStatus
Gets the new status.
Declaration
public DataProviderStatus NewStatus { get; }
Property Value
DataProviderStatus
The new status. |
OldStatus
Gets the old status.
Declaration
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
public bool ResultsChanged { get; }
Property Value
System.Boolean
|