NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlNamedNodeMap.RemoveNamedItem (String)

Removes the node specified by name.

[Visual Basic]
Overloads Overridable Public Function RemoveNamedItem( _
   ByVal name As String _
) As XmlNode
[C#]
public virtual XmlNode RemoveNamedItem(
   string name
);
[C++]
public: virtual XmlNode* RemoveNamedItem(
   String* name
);
[JScript]
public function RemoveNamedItem(
   name : String
) : XmlNode;

Parameters

name
The name of the node to remove.

Return Value

The XmlNode removed from this XmlNamedNodeMap. If a node with the specified name does not exist, null is returned.

Remarks

If the removed node is an XmlAttribute that contains a default value, it is immediately replaced in this XmlNamedNodeMap.

See Also

XmlNamedNodeMap Class | XmlNamedNodeMap Members | System.NewXml Namespace | XmlNamedNodeMap.RemoveNamedItem Overload List