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 internal partial class Interop
6 {
7     internal partial class Kernel32
8     {
9         internal partial class SecurityOptions
10         {
11             internal const int SECURITY_SQOS_PRESENT = 0x00100000;
12             internal const int SECURITY_ANONYMOUS = 0 << 16;
13             internal const int SECURITY_IDENTIFICATION = 1 << 16;
14             internal const int SECURITY_IMPERSONATION = 2 << 16;
15             internal const int SECURITY_DELEGATION = 3 << 16;
16         }
17     }
18 }
19