AttributeTableExtensions
using System.Collections.Generic;
namespace Org.BouncyCastle.Asn1.Cms
{
public static class AttributeTableExtensions
{
public static AttributeTable ToAttributeTable(this Asn1EncodableVector v)
{
return new AttributeTable(v);
}
public static AttributeTable ToAttributeTable(this IReadOnlyCollection<Attribute> attributes)
{
return new AttributeTable(attributes);
}
public static AttributeTable ToAttributeTable(this Asn1Set s)
{
return new AttributeTable(s);
}
}
}