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

Add() public method

public Add ( DerObjectIdentifier attrType, Asn1Encodable attrValue ) : AttributeTable
attrType Org.BouncyCastle.Asn1.DerObjectIdentifier
attrValue Org.BouncyCastle.Asn1.Asn1Encodable
return AttributeTable
		public AttributeTable Add(DerObjectIdentifier attrType, Asn1Encodable attrValue)
		{
			AttributeTable newTable = new AttributeTable(attributes);

			newTable.AddAttribute(new Attribute(attrType, new DerSet(attrValue)));

			return newTable;
		}