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