Org.BouncyCastle.Asn1.Cms.AttributeTable.AttributeTable C# (CSharp) Method

AttributeTable() public method

public AttributeTable ( Asn1EncodableVector v ) : System
v Org.BouncyCastle.Asn1.Asn1EncodableVector
return System
        public AttributeTable(
            Asn1EncodableVector v)
        {
            this.attributes = Platform.CreateHashtable(v.Count);

			foreach (Asn1Encodable o in v)
            {
                Attribute a = Attribute.GetInstance(o);

				AddAttribute(a);
            }
        }

Same methods

AttributeTable::AttributeTable ( Asn1Set s ) : System
AttributeTable::AttributeTable ( Attributes attrs ) : System
AttributeTable::AttributeTable ( Hashtable attrs ) : System
AttributeTable::AttributeTable ( IDictionary attrs ) : System