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

LinqInstantFeedbackSource(Action<GetQueryableEventArgs>, Action<GetQueryableEventArgs>) Constructor

Initializes a new instance of the LinqInstantFeedbackSource with the specified settings.

Namespace: DevExpress.Data.Linq

Assembly: DevExpress.Data.v18.2.dll

Declaration

public LinqInstantFeedbackSource(
    Action<GetQueryableEventArgs> getQueryable,
    Action<GetQueryableEventArgs> freeQueryable
)

Parameters

Name Type Description
getQueryable Action<GetQueryableEventArgs>

An Action<T><GetQueryableEventArgs,> delegate, which is a method that will handle the LinqInstantFeedbackSource.GetQueryable event. The specified delegate is attached to this event.

freeQueryable Action<GetQueryableEventArgs>

An Action<T><GetQueryableEventArgs,> delegate, which is a method that will handle the LinqInstantFeedbackSource.DismissQueryable event. The specified delegate is attached to this event.

See Also