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 AdsOptions
8     {
9         ADS_OPTION_SERVERNAME = 0,
10         ADS_OPTION_REFERRALS = 1,
11         ADS_OPTION_PAGE_SIZE = 2,
12         ADS_OPTION_SECURITY_MASK = 3,
13         ADS_OPTION_MUTUAL_AUTH_STATUS = 4,
14         ADS_OPTION_QUOTA = 5,
15         ADS_OPTION_PASSWORD_PORTNUMBER = 6,
16         ADS_OPTION_PASSWORD_METHOD = 7
17     }
18 }
19