Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MailFormat.cs « System.Web.Mail « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1050d7854948c35b5737a09c89635e917e4d43e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// System.Web.Mail.MailFormat.cs
//
// Author:
//    Lawrence Pit (loz@cable.a2000.nl)
//

namespace System.Web.Mail 
{

	/// <summary>
	/// </summary>
	public enum MailFormat 
	{

		/// <summary>
		/// </summary>
		Text = 0,
	
		/// <summary>
		/// </summary>
		Html = 1

	} 
	
} //namespace System.Web.Mail