/// <summary>
 /// Gets the attribute node with the specified name.
 /// </summary>
 /// <param name="Name">Name of the attribute.</param>
 /// <returns>Attr node.</returns>
 public Attr GetAttributeNode(string Name)
 {
     return(Attr.Create(element.getAttributeNode(Name)));
 }