Skip to main content
A newer version of this page is available. .

PLinqInstantFeedbackSource.DismissEnumerable Event

Occurs when the PLinqInstantFeedbackSource no longer needs the enumerable source it used for object retrieval.

Namespace: DevExpress.Data.PLinq

Assembly: DevExpress.Data.v19.2.dll

Declaration

public event EventHandler<GetEnumerableEventArgs> DismissEnumerable

Event Data

The DismissEnumerable event's data class is GetEnumerableEventArgs. The following properties provide information specific to this event:

Property Description
Source Gets or sets the enumerable data source.
Tag Gets or sets an arbitrary object associated with an enumerable source.

Remarks

You can access the object you have assigned to the GetEnumerableEventArgs.Tag property in the PLinqInstantFeedbackSource.GetEnumerable event handler.

See Also