Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

25 lines
640 B
C#

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
}
}