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

ValidationType.cs « System.Xml « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d746324e25638c5ccbd30e5c449c96dd6e630363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// System.Xml.ValidationType.cs
//
// Author:
// 	Duncan Mak  (duncan@ximian.com)
//
// (C) 2001 Ximian, Inc.  http://www.ximian.com
//

namespace System.Xml
{
	public enum ValidationType
	{
		None = 0,
		Auto = 1,
		DTD = 2,
		XDR = 3,
		Schema = 4,
	}
}