Novell.Directory.Ldap.LdapAttributeSet.Contains C# (CSharp) Method

Contains() public method

Returns true if this set contains an attribute of the same name as the specified attribute.
public Contains ( object attr ) : bool
attr object Object of type LdapAttribute /// ///
return bool
        public override bool Contains(object attr)
        {
            LdapAttribute attribute = (LdapAttribute) attr;
            return this.map.ContainsKey(attribute.Name.ToUpper());
        }