Node.LocalName

Node.LocalName property

Returns the local part of the qualified name of this node. For nodes of any type other than ELEMENT_NODE and ATTRIBUTE_NODE and nodes created with a DOM Level 1 method, such as Document.createElement(), this is always null.

public virtual string LocalName { get; }

Property Value

A string representing the local part of the element’s qualified name.

Remarks

Reference:

DOM Standard - defines a platform-neutral model for events, aborting activities, and node trees.DOM Standard (DOM) # dom-node-lastchild.GitHub - repository hosts the DOM Standard.

See Also