Class FieldDescriptionProviderBase
A base class for various implementations of IFieldDescriptionProvider.
Inheritance
Inherited Members
Namespace: Telerik.Pivot.Core.Fields
Assembly: Telerik.WinControls.PivotGrid.dll
Syntax
public abstract class FieldDescriptionProviderBase : IFieldDescriptionProvider
  Constructors
FieldDescriptionProviderBase()
Initializes a new instance of the FieldDescriptionProviderBase class.
Declaration
protected FieldDescriptionProviderBase()
  Properties
IsBusy
Gets whether a GetDescriptionsData request is in progress.
Declaration
public bool IsBusy { get; protected set; }
  Property Value
| 
        System.Boolean
         
  | 
    
Implements
Methods
GetDescriptionsDataAsync(Object)
Retrieves information about all available field descriptions. This method does not block the calling thread.
Declaration
public abstract void GetDescriptionsDataAsync(object state)
  Parameters
| 
        System.Object
        state
         
  | 
    
Implements
OnDescriptionsDataCompleted(GetDescriptionsDataCompletedEventArgs)
Raise GetDescriptionsDataAsyncCompleted event.
Declaration
protected virtual void OnDescriptionsDataCompleted(GetDescriptionsDataCompletedEventArgs args)
  Parameters
| 
        GetDescriptionsDataCompletedEventArgs
        args
         The event args used to invoke the event.  | 
    
Events
GetDescriptionsDataAsyncCompleted
Occurs when an asynchronous GetDescriptionsData operation completes.
Declaration
public event EventHandler<GetDescriptionsDataCompletedEventArgs> GetDescriptionsDataAsyncCompleted
  Event Type
| 
        System.EventHandler<GetDescriptionsDataCompletedEventArgs>
         
  |