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 class NativeMethods
8     {
9         public enum AuthenticationModes
10         {
11             SecureAuthentication = 0x1,
12             UseEncryption = 0x2,
13             UseSSL = 0x2,
14             ReadonlyServer = 0x4,
15             NoAuthentication = 0x10,
16             FastBind = 0x20,
17             UseSigning = 0x40,
18             UseSealing = 0x80,
19             UseDelegation = 0x100,
20             UseServerBinding = 0x200
21         }
22     }
23 }
24