using System; using System.Collections; using System.ComponentModel; namespace LumiSoft.Net.Mime { /// <summary> /// Attachments collection. /// </summary> [Obsolete("This class will be removed, use Mime class instead !")] public class Attachments : ArrayList { /// <summary> /// /// </summary> public Attachments() { } /// <summary> /// /// </summary> /// <param name="attachment"></param> /// <returns></returns> public int Add(Attachment attachment) { return base.Add(attachment); } /// <summary> /// /// </summary> public new Attachment this[int nIndex] { get{ return (Attachment)base[nIndex]; } set{ base[nIndex] = value; } } } }
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.
A list of licenses authors might use can be found here
The Next Version of Android - Some of What's Coming