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

MappingType.cs « System.Data « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dbdeb9fc23e2c4abf411b09bf2d657fc1b572eb2 (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.Data.MappingType.cs
//
// Author:
//   Christopher Podurgiel (cpodurgiel@msn.com)
//
// (C) Chris Podurgiel
//

using System;

namespace System.Data
{
	/// <summary>
	/// Specifies how a DataColumn is mapped.
	/// </summary>
	[Serializable]
	public enum MappingType
	{
		Element = 1,
		Attribute = 2,
		SimpleContent = 3,
		Hidden = 4
		
	}
}