Skip to main content

GetSourceEventArgs.Tag Property

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

Namespace: DevExpress.Data.WcfLinq

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 a queryable source.

Remarks

Use this property in a WcfInstantFeedbackSource.GetSource event handler to pass an arbitrary object, along with a queryable source supplied via the DevExpress.Xpf.Core.ServerMode.WcfInstantFeedbackDataSource.Query property. The object will also be passed to a WcfInstantFeedbackSource.DismissSource event handler, so that you can dispose of it when the queryable source is no longer required for the WcfInstantFeedbackSource.

See Also