Table of Contents

Method RemoveNamedItem

Namespace
SharpVectors.Dom
Assembly
SharpVectors.Core.dll

RemoveNamedItem(string)

Removes the node from the INamedNodeMap.

XmlNode RemoveNamedItem(string name)

Parameters

name string

The qualified name of the node to remove. The name is matched against the Name property of the matching node.

Returns

XmlNode

The XmlNode removed from this INamedNodeMap or null if a matching node was not found.

RemoveNamedItem(string, string)

Removes a node with the matching LocalName and NamespaceURI.

XmlNode RemoveNamedItem(string localName, string namespaceURI)

Parameters

localName string

The local name of the node to remove.

namespaceURI string

The namespace URI of the node to remove.

Returns

XmlNode

The XmlNode removed or null if a matching node was not found.