| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //
- // System.Web.Mail.MailAttachment.cs
- //
- // Author:
- // Lawrence Pit ([email protected])
- // Per Arneng ([email protected])
- //
- namespace System.Web.Mail
- {
- public class MailAttachment
- {
- private string filename;
- private MailEncoding encoding;
-
- public MailAttachment (string filename) :
- this (filename, MailEncoding.Base64)
- {
- }
-
- public MailAttachment (string filename, MailEncoding encoding)
- {
- this.filename = filename;
- this.encoding = encoding;
- try {
- System.IO.File.OpenRead (filename).Close ();
- } catch (Exception) {
- throw new System.Web.HttpException ("Cannot find file: '" +
- filename + "'." );
- }
- }
-
- // Properties
- public string Filename
- {
- get { return filename; }
- }
-
- public MailEncoding Encoding
- {
- get { return encoding; }
- }
-
- }
-
- } //namespace System.Web.Mail
|