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

GetSourceEventArgs.Tag Property

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

Namespace: DevExpress.Data.ODataLinq

Assembly: DevExpress.Data.v18.2.dll

Declaration

public object Tag { get; set; }

Property Value

Type Description
Object

An object associated with a queryable source.

Remarks

Use this property in a ODataInstantFeedbackSource.GetSource event handler to pass an arbitrary object along with a queryable source. The object will also be passed to a ODataInstantFeedbackSource.DismissSource event handler, so that you can dispose of it when the queryable source is no longer required for the ODataInstantFeedbackSource.

See Also