5 instantiations of PriorityRange
WindowsBase (5)
Base\System\Windows\Threading\Dispatcher.cs (3)
3174private static PriorityRange _foregroundPriorityRange = new PriorityRange(DispatcherPriority.Loaded, true, DispatcherPriority.Send, true); 3175private static PriorityRange _backgroundPriorityRange = new PriorityRange(DispatcherPriority.Background, true, DispatcherPriority.Input, true); 3176private static PriorityRange _idlePriorityRange = new PriorityRange(DispatcherPriority.SystemIdle, true, DispatcherPriority.ContextIdle, true);
Base\System\Windows\Threading\PriorityRange.cs (2)
14public static readonly PriorityRange All = new PriorityRange(DispatcherPriority.Inactive, DispatcherPriority.Send, true); // NOTE: should be Priority 19public static readonly PriorityRange None = new PriorityRange(DispatcherPriority.Invalid, DispatcherPriority.Invalid, true); // NOTE: should be Priority
13 references to PriorityRange
WindowsBase (13)
Base\System\Windows\Threading\Dispatcher.cs (3)
3174private static PriorityRange _foregroundPriorityRange = new PriorityRange(DispatcherPriority.Loaded, true, DispatcherPriority.Send, true); 3175private static PriorityRange _backgroundPriorityRange = new PriorityRange(DispatcherPriority.Background, true, DispatcherPriority.Input, true); 3176private static PriorityRange _idlePriorityRange = new PriorityRange(DispatcherPriority.SystemIdle, true, DispatcherPriority.ContextIdle, true);
Base\System\Windows\Threading\PriorityRange.cs (10)
14public static readonly PriorityRange All = new PriorityRange(DispatcherPriority.Inactive, DispatcherPriority.Send, true); // NOTE: should be Priority 19public static readonly PriorityRange None = new PriorityRange(DispatcherPriority.Invalid, DispatcherPriority.Invalid, true); // NOTE: should be Priority 146public bool Contains(PriorityRange priorityRange) 195if(o is PriorityRange) 197return Equals((PriorityRange) o); 208public bool Equals(PriorityRange priorityRange) 219public static bool operator== (PriorityRange priorityRange1, PriorityRange priorityRange2) 227public static bool operator!= (PriorityRange priorityRange1, PriorityRange priorityRange2)