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