Browse Source

XML docs for DispatcherPriority

pull/1172/head
Nikita Tsukanov 9 years ago
parent
commit
d8113d2987
  1. 8
      src/Avalonia.Base/Threading/DispatcherPriority.cs

8
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. // TODO: These are copied from WPF - many won't apply to Avalonia.
public enum DispatcherPriority public enum DispatcherPriority
{ {
/// <summary>
/// Minimum possible priority
/// </summary>
MinValue = 1, MinValue = 1,
/// <summary> /// <summary>
/// The job will be processed when the system is idle. /// The job will be processed when the system is idle.
/// </summary> /// </summary>
@ -64,6 +68,10 @@ namespace Avalonia.Threading
/// The job will be processed before other asynchronous operations. /// The job will be processed before other asynchronous operations.
/// </summary> /// </summary>
Send = 11, Send = 11,
/// <summary>
/// Maximum possible priority
/// </summary>
MaxValue = 11 MaxValue = 11
} }
} }

Loading…
Cancel
Save