BaseCompatibilityPreferences.InlineDispatcherSynchronizationContextSend Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether the Send(SendOrPostCallback, Object) method puts the delegates on the dispatcher queue or if the delegate is directly invoked.
public:
static property bool InlineDispatcherSynchronizationContextSend { bool get(); void set(bool value); };
public static bool InlineDispatcherSynchronizationContextSend { get; set; }
static member InlineDispatcherSynchronizationContextSend : bool with get, set
Public Shared Property InlineDispatcherSynchronizationContextSend As Boolean
Property Value
true
if the Send(SendOrPostCallback, Object) method puts the delegates on the dispatcher queue or if the delegate is directly invoked; otherwise, false
.
Remarks
The default value of this property depends which version of WPF that your app targets. If your app targets WPF 4.0 or earlier, the default is false
. If your app targets WPF 4.5, the default is true
. If you use this property to change the behavior of WPF, you must change the property's value early in the app's lifetime, such in the constructor of the class that inherits from Application. After the value is read, you cannot change it again.