HtmlDocument.GetElementsByTagName(String) Method

Definition

Retrieve a collection of elements with the specified HTML tag.

C#
public System.Windows.Forms.HtmlElementCollection GetElementsByTagName(string tagName);

Parameters

tagName
String

The name of the HTML tag for the HtmlElement objects you want to retrieve.

Returns

The collection of elements who tag name is equal to the tagName argument.

Examples

HTML pages often use the META tag to embed arbitrary information about the document. The following HTML code example retrieves all of the META tags within an HTML document, finds the META tag with the name Description, and displays it to the user. The code example requires that your application has a WebBrowser control named WebBrowser1.

C#
private void DisplayMetaDescription()
{
    if (webBrowser1.Document != null)
    {
        HtmlElementCollection elems = webBrowser1.Document.GetElementsByTagName("META");
        foreach (HtmlElement elem in elems)
        {
            String nameStr = elem.GetAttribute("name");
            if (nameStr != null && nameStr.Length != 0)
            {
                String contentStr = elem.GetAttribute("content");
                MessageBox.Show("Document: " + webBrowser1.Url.ToString() + "\nDescription: " + contentStr);
            }
        }
    }
}

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also