1 type derived from X501Attribute
System.Security.Cryptography (1)
System\Security\Cryptography\X509Certificates\Pkcs9ExtensionRequest.cs (1)
10internal sealed class Pkcs9ExtensionRequest : X501Attribute
1 instantiation of X501Attribute
System.Security.Cryptography (1)
System\Security\Cryptography\X509Certificates\CertificateRequest.cs (1)
367attributes[attrCount] = new X501Attribute(attr.Oid.Value, attr.RawData);
6 references to X501Attribute
System.Security.Cryptography (6)
System\Security\Cryptography\X509Certificates\CertificateRequest.cs (3)
337X501Attribute[] attributes = Array.Empty<X501Attribute>(); 342attributes = new X501Attribute[OtherRequestAttributes.Count + (hasExtensions ? 1 : 0)];
System\Security\Cryptography\X509Certificates\Pkcs10CertificationRequestInfo.cs (3)
18internal Collection<X501Attribute> Attributes { get; } = new Collection<X501Attribute>(); 23IEnumerable<X501Attribute> attributes)