Skip to main content

GetEnumerableEventArgs.Tag Property

Gets or sets an arbitrary object associated with an enumerable source.

Namespace: DevExpress.Data.PLinq

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

public object Tag { get; set; }

Property Value

Type Description
Object

An object associated with an enumerable source.

Remarks

Use this property in a PLinqInstantFeedbackSource.GetEnumerable event handler to pass an arbitrary object, along with an enumerable source supplied via the PLinqServerModeSource.Source property. The object will also be passed to a PLinqInstantFeedbackSource.DismissEnumerable event handler, so that you can dispose of it when the enumerable source is no longer required for the PLinqInstantFeedbackSource.

See Also