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

PLinqInstantFeedbackDataSource.DisposeCommand Property

Disposes of the PLinqInstantFeedbackDataSource object and releases all the allocated resources.

Namespace: DevExpress.Xpf.Core.ServerMode

Assembly: DevExpress.Xpf.Core.v22.2.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

public ICommand DisposeCommand { get; }

Property Value

Type Description
ICommand

An object implementing the ICommand interface, that defines the command.

Remarks

When using PLinqInstantFeedbackDataSource, it must be disposed of to terminate the processing thread and release all the resources that it owns. This can be done either by calling its PLinqInstantFeedbackDataSource.Dispose method or by executing the PLinqInstantFeedbackDataSource.DisposeCommand. For instance, you can execute this command in an MVVM-friendly manner using EventTrigger after a window has been closed.

Corresponding Method: PLinqInstantFeedbackDataSource.Dispose.

See Also