36 lines
1.6 KiB
C#
36 lines
1.6 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Threading
|
|
{
|
|
/// <summary>Specifies the scheduling priority of a <see cref="T:System.Threading.Thread" />.</summary>
|
|
// Token: 0x0200035A RID: 858
|
|
[Token(Token = "0x200035A")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public enum ThreadPriority
|
|
{
|
|
/// <summary>The <see cref="T:System.Threading.Thread" /> can be scheduled after threads with any other priority.</summary>
|
|
// Token: 0x040011C1 RID: 4545
|
|
[Token(Token = "0x40011C1")]
|
|
Lowest,
|
|
/// <summary>The <see cref="T:System.Threading.Thread" /> can be scheduled after threads with <see langword="Normal" /> priority and before those with <see langword="Lowest" /> priority.</summary>
|
|
// Token: 0x040011C2 RID: 4546
|
|
[Token(Token = "0x40011C2")]
|
|
BelowNormal,
|
|
/// <summary>The <see cref="T:System.Threading.Thread" /> can be scheduled after threads with <see langword="AboveNormal" /> priority and before those with <see langword="BelowNormal" /> priority. Threads have <see langword="Normal" /> priority by default.</summary>
|
|
// Token: 0x040011C3 RID: 4547
|
|
[Token(Token = "0x40011C3")]
|
|
Normal,
|
|
/// <summary>The <see cref="T:System.Threading.Thread" /> can be scheduled after threads with <see langword="Highest" /> priority and before those with <see langword="Normal" /> priority.</summary>
|
|
// Token: 0x040011C4 RID: 4548
|
|
[Token(Token = "0x40011C4")]
|
|
AboveNormal,
|
|
/// <summary>The <see cref="T:System.Threading.Thread" /> can be scheduled before threads with any other priority.</summary>
|
|
// Token: 0x040011C5 RID: 4549
|
|
[Token(Token = "0x40011C5")]
|
|
Highest
|
|
}
|
|
}
|