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

WcfInstantFeedbackDataSourceBase.AreSourceRowsThreadSafe Property

Specifies whether elements retrieved by the WcfInstantFeedbackDataSourceBase‘s queryable source are thread-safe. This is a dependency property.

Namespace: DevExpress.Xpf.Core.ServerMode

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Core, DevExpress.Wpf.Core

Declaration

public bool AreSourceRowsThreadSafe { get; set; }

Property Value

Type Description
Boolean

true, if elements retrieved by the queryable source are thread-safe; otherwise, false.

Remarks

Set this property according to the type (thread-safe or not) of elements retrieved by a queryable source to be supplied via a WcfInstantFeedbackDataSource.GetSource event handler. The AreSourceRowsThreadSafe property’s value can be modified within the event handler, via the event parameter’s AreSourceRowsThreadSafe property.

See Also