Skip to main content

GetEnumerableEventArgs.Tag Property

Gets or sets an arbitrary object associated with a data source.

Namespace: DevExpress.Xpf.Core.ServerMode

Assembly: DevExpress.Xpf.Core.v23.2.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

public object Tag { get; set; }

Property Value

Type Description
Object

An object associated with a data source.

Remarks

Use the Tag property to pass an arbitrary object, along with a data source supplied via the GetEnumerableEventArgs.ItemsSource property. The object will also be passed to a PLinqInstantFeedbackDataSource.DismissEnumerable event handler, so that you can dispose of it when the data source is no longer required for the PLinqInstantFeedbackDataSource.

See Also