2002-12-24 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[mono.git] / mcs / class / System.XML / System.Xml / ValidationType.cs
1 // System.Xml.ValidationType.cs
2 //
3 // Author:
4 //      Duncan Mak  (duncan@ximian.com)
5 //
6 // (C) 2001 Ximian, Inc.  http://www.ximian.com
7 //
8
9 namespace System.Xml
10 {
11         public enum ValidationType
12         {
13                 None = 0,
14                 Auto = 1,
15                 DTD = 2,
16                 XDR = 3,
17                 Schema = 4,
18         }
19 }
20