Skip to main content

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

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

Namespace: DevExpress.Data.PLinq

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

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

Parameters

Name Type Description
getEnumerable EventHandler<GetEnumerableEventArgs>

An EventHandler<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<GetEnumerableEventArgs> delegate, which is a method that will handle the PLinqInstantFeedbackSource.DismissEnumerable event. The specified delegate is attached to this event.

See Also