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

ODataInstantFeedbackSource(EventHandler<GetSourceEventArgs>, EventHandler<GetSourceEventArgs>) Constructor

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

Namespace: DevExpress.Data.ODataLinq

Assembly: DevExpress.Data.v20.2.dll

NuGet Packages: DevExpress.Data, DevExpress.WindowsDesktop.Data

Declaration

public ODataInstantFeedbackSource(
    EventHandler<GetSourceEventArgs> getSource,
    EventHandler<GetSourceEventArgs> freeSource
)

Parameters

Name Type Description
getSource EventHandler<GetSourceEventArgs>

An EventHandler<GetSourceEventArgs> delegate, which is a method that will handle the ODataInstantFeedbackSource.GetSource event. The specified delegate is attached to this event.

freeSource EventHandler<GetSourceEventArgs>

An EventHandler<GetSourceEventArgs> delegate, which is a method that will handle the ODataInstantFeedbackSource.DismissSource event. The specified delegate is attached to this event.

See Also