New test.
[mono.git] / mcs / class / System.DirectoryServices / System.DirectoryServices / SortDirection.cs
1 /******************************************************************************\r
2 * The MIT License\r
3 * Copyright (c) 2003 Novell Inc.,  www.novell.com\r
4\r
5 * Permission is hereby granted, free of charge, to any person obtaining  a copy\r
6 * of this software and associated documentation files (the Software), to deal\r
7 * in the Software without restriction, including  without limitation the rights\r
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell \r
9 * copies of the Software, and to  permit persons to whom the Software is \r
10 * furnished to do so, subject to the following conditions:\r
11\r
12 * The above copyright notice and this permission notice shall be included in \r
13 * all copies or substantial portions of the Software.\r
14\r
15 * THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR \r
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \r
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER \r
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r
21 * SOFTWARE.\r
22 *******************************************************************************/\r
23 \r
24 //\r
25 // System.DirectoryServices.SortDirection .cs\r
26 //\r
27 // Author:\r
28 //   Sunil Kumar (sunilk@novell.com)\r
29 //\r
30 // (C)  Novell Inc.\r
31 //\r
32 \r
33 namespace System.DirectoryServices\r
34 {\r
35         \r
36         /// <summary>\r
37         /// Specifies how to sort the results of an Active Directory query.\r
38         /// </summary>\r
39         [Serializable]\r
40         public enum SortDirection \r
41         {\r
42                 Ascending,\r
43                 Descending\r
44         }\r
45 \r
46 }\r
47 \r