File: System\Security\Cryptography\X509Certificates\X500DistinguishedNameFlags.cs
Web Access
Project: src\src\libraries\System.Security.Cryptography\src\System.Security.Cryptography.csproj (System.Security.Cryptography)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
using System.Diagnostics;
 
namespace System.Security.Cryptography.X509Certificates
{
    [Flags]
    public enum X500DistinguishedNameFlags
    {
        None = 0x0000,
        Reversed = 0x0001,
 
        UseSemicolons = 0x0010,
        DoNotUsePlusSign = 0x0020,
        DoNotUseQuotes = 0x0040,
        UseCommas = 0x0080,
        UseNewLines = 0x0100,
 
        UseUTF8Encoding = 0x1000,
        UseT61Encoding = 0x2000,
        ForceUTF8Encoding = 0x4000,
    }
}