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

XmlSortOrder.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: 925aa15cd6c912bb6c71a4a0c2b87b5e66ea7baa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// System.Xml.XPath.XmlSortOrder
//
// Author:
//   Jason Diamond (jason@injektilo.org)
//
// (C) 2002 Jason Diamond  http://injektilo.org/
//

namespace System.Xml.XPath
{
	public enum XmlSortOrder
	{
		Ascending = 1,
		Descending = 2,
	}
}