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 AdsAuthentication
8     {
9         ADS_SECURE_AUTHENTICATION = 0x1,
10         ADS_USE_ENCRYPTION = 0x2,
11         ADS_USE_SSL = 0x2,
12         ADS_READONLY_SERVER = 0x4,
13         ADS_PROMPT_CREDENTIALS = 0x8,
14         ADS_NO_AUTHENTICATION = 0x10,
15         ADS_FAST_BIND = 0x20,
16         ADS_USE_SIGNING = 0x40,
17         ADS_USE_SEALING = 0x80
18     }
19 }
20