8 references to ReferralChasingOptions
System.DirectoryServices.Protocols (8)
System\DirectoryServices\Protocols\ldap\LdapSessionOptions.Linux.cs (8)
62public ReferralChasingOptions ReferralChasing 66return GetBoolValueHelper(LdapOption.LDAP_OPT_REFERRALS) ? ReferralChasingOptions.All : ReferralChasingOptions.None; 70if (((value) & (~ReferralChasingOptions.All)) != 0) 72throw new InvalidEnumArgumentException(nameof(value), (int)value, typeof(ReferralChasingOptions)); 74if (value != ReferralChasingOptions.None && value != ReferralChasingOptions.All) 79SetBoolValueHelper(LdapOption.LDAP_OPT_REFERRALS, value == ReferralChasingOptions.All);