| File: System\DirectoryServices\Protocols\ldap\LocalAppContextSwitches.cs | Web Access |
| Project: src\runtime\src\libraries\System.DirectoryServices.Protocols\src\System.DirectoryServices.Protocols.csproj (System.DirectoryServices.Protocols) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Runtime.CompilerServices; namespace System { internal static partial class LocalAppContextSwitches { private static int s_useBasicAuthFallback; public static bool UseBasicAuthFallback { [MethodImpl(MethodImplOptions.AggressiveInlining)] get => GetCachedSwitchValue("System.DirectoryServices.Protocols.UseBasicAuthFallback", ref s_useBasicAuthFallback); } } }