Beispiel #1
0
        private string GetValueOrDefault(LdapAttributeSet attributeSet, string name)
        {
            if (attributeSet.TryGetValue(name, out var ldapAttributeValue))
            {
                return(ldapAttributeValue.StringValue);
            }

            return(string.Empty);
        }