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

EntityInstantFeedbackSource(EventHandler<GetQueryableEventArgs>, EventHandler<GetQueryableEventArgs>) Constructor

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

Namespace: DevExpress.Data.Linq

Assembly: DevExpress.Data.v18.2.dll

Declaration

public EntityInstantFeedbackSource(
    EventHandler<GetQueryableEventArgs> getQueryable,
    EventHandler<GetQueryableEventArgs> freeQueryable
)

Parameters

Name Type Description
getQueryable EventHandler<GetQueryableEventArgs>

An EventHandler<TEventArgs><GetQueryableEventArgs,> delegate, which is a method that will handle the EntityInstantFeedbackSource.GetQueryable event. The specified delegate is attached to this event.

freeQueryable EventHandler<GetQueryableEventArgs>

An EventHandler<TEventArgs><GetQueryableEventArgs,> delegate, which is a method that will handle the EntityInstantFeedbackSource.DismissQueryable event. The specified delegate is attached to this event.

See Also