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

A base class for various implementations of IFieldDescriptionProvider.

Definition

Namespace:Telerik.Pivot.Core.Fields

Assembly:Telerik.WinControls.PivotGrid.dll

Syntax:

C#
public abstract class FieldDescriptionProviderBase : IFieldDescriptionProvider

Inheritance: objectFieldDescriptionProviderBase

Derived Classes: LocalFieldDescriptionsProviderBaseOlapFieldDescriptionsProviderBase

Implements: IFieldDescriptionProvider

Constructors

Initializes a new instance of the FieldDescriptionProviderBase class.

C#
protected FieldDescriptionProviderBase()

Properties

Gets whether a GetDescriptionsData request is in progress.

C#
public bool IsBusy { get; protected set; }

Implements: IFieldDescriptionProvider.IsBusy

Methods

Retrieves information about all available field descriptions. This method does not block the calling thread.

C#
public abstract void GetDescriptionsDataAsync(object state)
Parameters:stateobject

Implements: IFieldDescriptionProvider.GetDescriptionsDataAsync(object)

Raise GetDescriptionsDataAsyncCompleted event.

C#
protected virtual void OnDescriptionsDataCompleted(GetDescriptionsDataCompletedEventArgs args)
Parameters:argsGetDescriptionsDataCompletedEventArgs

The event args used to invoke the event.

Events

Occurs when an asynchronous GetDescriptionsData operation completes.

C#
public event EventHandler<GetDescriptionsDataCompletedEventArgs> GetDescriptionsDataAsyncCompleted

Implements: IFieldDescriptionProvider.GetDescriptionsDataAsyncCompleted