Click here to Skip to main content
Click here to Skip to main content
Articles » Languages » C# » Utilities » Downloads
 

Advanced MIME Parser/Creator/Editor

By , 5 Oct 2005
 
lumisoft_net.zip
Net
docs
dns
dns_records.jpg
dns_records.vsd
Help
doc
LumiSoft.Net_Help.chm
Untitled.ndoc
Net
_junk
AUTH
bin
Debug
Release
LumiSoft.Net.dll
Dns
Client
FTP
Client
Server
ICMP
IMAP
Client
Server
LumiSoft.Net
Mime
obsolete
Net.csproj.user
POP3
Client
Server
ServersCore
SMTP
Client
Server
RFC
DNSx
FTPx
ICMP
IMAPx
MIME
NNTPx
POP3x
SASL
SMTPx
rfc2554 - SMTP Service Extension for Authentication_files
library.jpg
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.

License

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

About the Author

Ivar Lumi
Estonia Estonia
Member
No Biography provided

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 5 Oct 2005
Article Copyright 2005 by Ivar Lumi
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid