using System;
namespace System.Security.Cryptography.X509Certificates
{
/// Specifies characteristics of the X.500 distinguished name.
// Token: 0x02000286 RID: 646
[Flags]
public enum X500DistinguishedNameFlags
{
/// The distinguished name has no special characteristics.
// Token: 0x040012E8 RID: 4840
None = 0,
/// The distinguished name is reversed.
// Token: 0x040012E9 RID: 4841
Reversed = 1,
/// The distinguished name uses semicolons.
// Token: 0x040012EA RID: 4842
UseSemicolons = 16,
/// The distinguished name does not use the plus sign.
// Token: 0x040012EB RID: 4843
DoNotUsePlusSign = 32,
/// The distinguished name does not use quotation marks.
// Token: 0x040012EC RID: 4844
DoNotUseQuotes = 64,
/// The distinguished name uses commas.
// Token: 0x040012ED RID: 4845
UseCommas = 128,
/// The distinguished name uses the new line character.
// Token: 0x040012EE RID: 4846
UseNewLines = 256,
/// The distinguished name uses UTF8 encoding.
// Token: 0x040012EF RID: 4847
UseUTF8Encoding = 4096,
/// The distinguished name uses T61 encoding.
// Token: 0x040012F0 RID: 4848
UseT61Encoding = 8192,
/// The distinguished name uses UTF8 encoding.
// Token: 0x040012F1 RID: 4849
ForceUTF8Encoding = 16384
}
}