This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
namespace System.Net.Mail
{
/// <summary>Specifies the priority of a <see cref="T:System.Net.Mail.MailMessage" />.</summary>
// Token: 0x020002B8 RID: 696
[Token(Token = "0x20002B8")]
public enum MailPriority
{
/// <summary>The email has normal priority.</summary>
// Token: 0x04000AE0 RID: 2784
[Token(Token = "0x4000AE0")]
Normal,
/// <summary>The email has low priority.</summary>
// Token: 0x04000AE1 RID: 2785
[Token(Token = "0x4000AE1")]
Low,
/// <summary>The email has high priority.</summary>
// Token: 0x04000AE2 RID: 2786
[Token(Token = "0x4000AE2")]
High
}
}