1 instantiation of X500RelativeDistinguishedName
System.Security.Cryptography (1)
System\Security\Cryptography\X509Certificates\X500DistinguishedName.cs (1)
148
var rdn = new
X500RelativeDistinguishedName
(rawDataMemory.Slice(offset, encodedValue.Length));
12 references to X500RelativeDistinguishedName
System.Security.Cryptography (12)
System\Security\Cryptography\X509Certificates\X500DistinguishedName.cs (10)
13
private List<
X500RelativeDistinguishedName
>? _parsedAttributes;
81
public IEnumerable<
X500RelativeDistinguishedName
> EnumerateRelativeDistinguishedNames(bool reversed = true)
83
List<
X500RelativeDistinguishedName
> parsedAttributes = _parsedAttributes ??= ParseAttributes(RawData);
106
private static IEnumerable<
X500RelativeDistinguishedName
> EnumerateRelativeDistinguishedNames(
107
List<
X500RelativeDistinguishedName
> parsedAttributes,
126
private static List<
X500RelativeDistinguishedName
> ParseAttributes(byte[] rawData)
128
List<
X500RelativeDistinguishedName
>? parsedAttributes = null;
148
var
rdn = new X500RelativeDistinguishedName(rawDataMemory.Slice(offset, encodedValue.Length));
150
(parsedAttributes ??= new List<
X500RelativeDistinguishedName
>()).Add(rdn);
158
return parsedAttributes ?? new List<
X500RelativeDistinguishedName
>();
System\Security\Cryptography\X509Certificates\X509Certificate2.cs (2)
1382
X500RelativeDistinguishedName
? cn = null;
1384
foreach (
X500RelativeDistinguishedName
rdn in SubjectName.EnumerateRelativeDistinguishedNames())