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

Remove() public method

public Remove ( DerObjectIdentifier attrType ) : AttributeTable
attrType Org.BouncyCastle.Asn1.DerObjectIdentifier
return AttributeTable
		public AttributeTable Remove(DerObjectIdentifier attrType)
		{
			AttributeTable newTable = new AttributeTable(attributes);

			newTable.attributes.Remove(attrType);

			return newTable;
		}
    }