20 lines
495 B
C#
20 lines
495 B
C#
using System;
|
|
|
|
namespace System.Net.Mail
|
|
{
|
|
/// <summary>Specifies the priority of a <see cref="T:System.Net.Mail.MailMessage" />.</summary>
|
|
// Token: 0x02000141 RID: 321
|
|
public enum MailPriority
|
|
{
|
|
/// <summary>The email has normal priority.</summary>
|
|
// Token: 0x04000B1B RID: 2843
|
|
Normal,
|
|
/// <summary>The email has low priority.</summary>
|
|
// Token: 0x04000B1C RID: 2844
|
|
Low,
|
|
/// <summary>The email has high priority.</summary>
|
|
// Token: 0x04000B1D RID: 2845
|
|
High
|
|
}
|
|
}
|