System.Security.Cryptography.CryptographicAttributeObject
Contains a type and a collection of values associated with that type.
namespace System.Security.Cryptography
{
public sealed class CryptographicAttributeObject
{
public Oid Oid { get; }
public AsnEncodedDataCollection Values { get; }
public CryptographicAttributeObject(Oid oid);
public CryptographicAttributeObject(Oid oid, AsnEncodedDataCollection values);
}
}