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

PLinqInstantFeedbackSource(EventHandler<GetEnumerableEventArgs>, EventHandler<GetEnumerableEventArgs>) Constructor

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

Namespace: DevExpress.Data.PLinq

Assembly: DevExpress.Data.v18.2.dll

Declaration

public PLinqInstantFeedbackSource(
    EventHandler<GetEnumerableEventArgs> getEnumerable,
    EventHandler<GetEnumerableEventArgs> freeEnumerable
)

Parameters

Name Type Description
getEnumerable EventHandler<GetEnumerableEventArgs>

An EventHandler<TEventArgs><GetEnumerableEventArgs,> delegate, which is a method that will handle the PLinqInstantFeedbackSource.GetEnumerable event. The specified delegate is attached to this event.

freeEnumerable EventHandler<GetEnumerableEventArgs>

An EventHandler<TEventArgs><GetEnumerableEventArgs,> delegate, which is a method that will handle the PLinqInstantFeedbackSource.DismissEnumerable event. The specified delegate is attached to this event.

See Also