[This is preliminary documentation and is subject to change.]

Gets the Name of the current node without any namespace prefix.

Namespace: Tools.XmlT.XPathT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public override string LocalName { get; }
Visual Basic
Public Overrides ReadOnly Property LocalName As String
	Get
Visual C++
public:
virtual property String^ LocalName {
	String^ get () override;
}
F#
abstract LocalName : string
override LocalName : string
JScript
override function get LocalName () : String

Return Value

A String that contains the local name of the current node, or Empty if the current node does not have a name (for example, text or comment nodes).

Remarks

See Also