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

ToHashtable() private method

private ToHashtable ( ) : Hashtable
return System.Collections.Hashtable
		public Hashtable ToHashtable()
        {
            return new Hashtable(attributes);
        }
#endif

Usage Example

		/**
		 * Initialise with some extra attributes or overrides.
		 *
		 * @param attributeTable initial attribute table to use.
		 */
		public DefaultSignedAttributeTableGenerator(
			AttributeTable attributeTable)
		{
			if (attributeTable != null)
			{
				table = attributeTable.ToHashtable();
			}
			else
			{
				table = new Hashtable();
			}
		}
All Usage Examples Of Org.BouncyCastle.Asn1.Cms.AttributeTable::ToHashtable