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

XmlDataType.cs « System.Xml.XPath « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b8c8ea44ae3cfd8df7e1d42743ee945daa705cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// System.Xml.XPath.XmlDataType
//
// Author:
//   Jason Diamond (jason@injektilo.org)
//
// (C) 2002 Jason Diamond  http://injektilo.org/
//

namespace System.Xml.XPath
{
	public enum XmlDataType
	{
		Text = 1,
		Number = 2,
	}
}