File: src\libraries\Common\src\Interop\Unix\System.Net.Security.Native\Interop.NetSecurityNative.PackageType.cs
Web Access
Project: src\src\libraries\System.Net.Security\src\System.Net.Security.csproj (System.Net.Security)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
 
internal static partial class Interop
{
    internal static partial class NetSecurityNative
    {
        internal enum PackageType : uint
        {
            Negotiate = 0,
            NTLM = 1,
            Kerberos = 2,
        }
    }
}