File: System\DirectoryServices\Protocols\common\ReferralChasingOption.cs
Web Access
Project: src\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.
 
namespace System.DirectoryServices.Protocols
{
    [Flags]
    public enum ReferralChasingOptions
    {
        None = 0,
        Subordinate = 0x20,
        External = 0x40,
        All = Subordinate | External
    }
}