1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 namespace System.DirectoryServices.Interop
6 {
7     internal enum AdsSearchPreferences
8     {
9         ASYNCHRONOUS = 0,
10         DEREF_ALIASES = 1,
11         SIZE_LIMIT = 2,
12         TIME_LIMIT = 3,
13         ATTRIBTYPES_ONLY = 4,
14         SEARCH_SCOPE = 5,
15         TIMEOUT = 6,
16         PAGESIZE = 7,
17         PAGED_TIME_LIMIT = 8,
18         CHASE_REFERRALS = 9,
19         SORT_ON = 10,
20         CACHE_RESULTS = 11,
21         DIRSYNC = 12,
22         TOMBSTONE = 13,
23         VLV = 14,
24         ATTRIBUTE_QUERY = 15,
25         SECURITY_MASK = 16,
26         DIRSYNC_FLAG = 17,
27         EXTENDED_DN = 18
28     }
29 }
30