BaseCompatibilityPreferences.FlowDispatcherSynchronizationContextPriority Property

Definition

Gets or sets a value that indicates whether information about the Priority is saved to the DispatcherSynchronizationContext.

public:
 static property bool FlowDispatcherSynchronizationContextPriority { bool get(); void set(bool value); };
public static bool FlowDispatcherSynchronizationContextPriority { get; set; }
static member FlowDispatcherSynchronizationContextPriority : bool with get, set
Public Shared Property FlowDispatcherSynchronizationContextPriority As Boolean

Property Value

true if information about the Priority is saved to the DispatcherSynchronizationContext; 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.

Applies to