/// <summary>
 ///     Returns the attributes matching the specified attrName.
 /// </summary>
 /// <param name="attrName">
 ///     The name of the attribute or attributes to return.
 /// </param>
 /// <returns>
 ///     An array of LdapAttribute objects.
 /// </returns>
 public LdapAttribute GetAttribute(string attrName)
 {
     return(Attrs.GetAttribute(attrName));
 }