PLinqInstantFeedbackSource(Action<GetEnumerableEventArgs>, Action<GetEnumerableEventArgs>) Constructor
Initializes a new instance of the PLinqInstantFeedbackSource with the specified settings.
Namespace: DevExpress.Data.PLinq
Assembly: DevExpress.Data.v24.1.dll
NuGet Package: DevExpress.Data
Declaration
public PLinqInstantFeedbackSource(
Action<GetEnumerableEventArgs> getEnumerable,
Action<GetEnumerableEventArgs> freeEnumerable
)
Parameters
Name | Type | Description |
---|---|---|
getEnumerable | Action<GetEnumerableEventArgs> | An Action<GetEnumerableEventArgs> delegate, which is a method that will handle the PLinqInstantFeedbackSource.GetEnumerable event. The specified delegate is attached to this event. |
freeEnumerable | Action<GetEnumerableEventArgs> | An Action<GetEnumerableEventArgs> delegate, which is a method that will handle the PLinqInstantFeedbackSource.DismissEnumerable event. The specified delegate is attached to this event. |
See Also