PLinqInstantFeedbackSource.DismissEnumerable Event
In This Article
Occurs when the PLinqInstantFeedbackSource no longer needs the enumerable source it used for object retrieval.
Namespace: DevExpress.Data.PLinq
Assembly: DevExpress.Data.v24.2.dll
NuGet Package: DevExpress.Data
#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