| File: src\libraries\Common\src\System\Net\NegotiationInfoClass.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. namespace System.Net { // This class is used to determine if NTLM or // Kerberos are used in the context of a Negotiate handshake internal static partial class NegotiationInfoClass { internal const string NTLM = "NTLM"; internal const string Kerberos = "Kerberos"; internal const string Negotiate = "Negotiate"; internal const string Basic = "Basic"; } } |