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

MailEncoding.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: 16b1b341a919d5cf415dc7969176ca6fbc789815 (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.MailEncoding.cs
//
// Author:
//    Lawrence Pit (loz@cable.a2000.nl)
//

namespace System.Web.Mail 
{

	/// <summary>
	/// </summary>
	public enum MailEncoding 
	{

		/// <summary>
		/// </summary>
		UUEncode = 0,

		/// <summary>
		/// </summary>
		Base64 = 1

	} 
	
} //namespace System.Web.Mail