From d8113d2987261d866db76e246f4041b8ec97e6a8 Mon Sep 17 00:00:00 2001 From: Nikita Tsukanov Date: Mon, 2 Oct 2017 15:02:13 +0300 Subject: [PATCH] XML docs for DispatcherPriority --- src/Avalonia.Base/Threading/DispatcherPriority.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Avalonia.Base/Threading/DispatcherPriority.cs b/src/Avalonia.Base/Threading/DispatcherPriority.cs index 78589984cb..1faa2da7f8 100644 --- a/src/Avalonia.Base/Threading/DispatcherPriority.cs +++ b/src/Avalonia.Base/Threading/DispatcherPriority.cs @@ -9,7 +9,11 @@ namespace Avalonia.Threading // TODO: These are copied from WPF - many won't apply to Avalonia. public enum DispatcherPriority { + /// + /// Minimum possible priority + /// MinValue = 1, + /// /// The job will be processed when the system is idle. /// @@ -64,6 +68,10 @@ namespace Avalonia.Threading /// The job will be processed before other asynchronous operations. /// Send = 11, + + /// + /// Maximum possible priority + /// MaxValue = 11 } }