X500DistinguishedNameFlags 枚举

定义

指定 X.500 可分辨名称的特性。

此枚举支持其成员值的按位组合。

C#
[System.Flags]
public enum X500DistinguishedNameFlags
继承
X500DistinguishedNameFlags
属性

字段

名称 说明
DoNotUsePlusSign 32

可分辨名称不使用加号。

DoNotUseQuotes 64

可分辨名称不使用引号。

ForceUTF8Encoding 16384

强制可分辨名称将特定 X.500 密钥编码为 UTF-8 字符串而不是可打印的 Unicode 字符串。 有关受影响的 X.500 密钥的详细信息和列表,请参阅 X500NameFlags enumeration(X500NameFlags 枚举)。

None 0

可分辨名称没有特殊特性。

Reversed 1

反转可分辨名称。

UseCommas 128

可分辨名称使用逗号。

UseNewLines 256

可分辨名称使用新行字符。

UseSemicolons 16

可分辨名称使用分号。

UseT61Encoding 8192

可分辨名称使用 T61 编码。

UseUTF8Encoding 4096

可分辨名称使用 UTF8 编码而不是 Unicode 字符编码。

示例

下面的代码示例演示如何使用 X500DistinguishedNameFlags 枚举。

C#
using System;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;

class X500Sample
{
    static void Main()
    {
        try
        {
            X509Store store = new("MY", StoreLocation.CurrentUser);
            store.Open(OpenFlags.ReadOnly | OpenFlags.OpenExistingOnly);
            X509Certificate2Collection collection = store.Certificates;
            X509Certificate2Collection fcollection = collection.Find(
                X509FindType.FindByTimeValid,
                DateTime.Now, false
                );
            X509Certificate2Collection scollection = X509Certificate2UI.SelectFromCollection(
                fcollection,
                "Test Certificate Select",
                "Select a certificate from the following list to get information on that certificate",
                X509SelectionFlag.MultiSelection
                );
            Console.WriteLine($"Number of certificates: {scollection.Count}{Environment.NewLine}");
            foreach (X509Certificate2 x509 in scollection)
            {
                X500DistinguishedName dname = new(
                    x509.SubjectName.Name,
                    X500DistinguishedNameFlags.Reversed | X500DistinguishedNameFlags.UseSemicolons
                    );
                Console.WriteLine("X500DistinguishedName: {0}{1}", dname.Name, Environment.NewLine);
                x509.Reset();
            }
            store.Close();
        }
        catch (CryptographicException)
        {
            Console.WriteLine("Information could not be written out for this certificate.");
        }
    }
}

注解

此枚举与 类一起使用, X500DistinguishedName 以指示可分辨名称中包含的特殊字符。

在此枚举中,多个值互斥;仅使用这些值之一来定义 X.500 可分辨名称的特殊特征。 例如,仅指定 、 UseNewLinesUseSemicolons 值之UseCommas一。 还可以指定 UseT61EncodingUseUTF8Encoding

适用于

产品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.3, 1.4, 1.6, 2.0, 2.1