XmlNamedNodeMap.SetNamedItemNS(IXmlNode) Method

Definition

Adds the specified node to the collection in the specified namespace. If you are not using any namespaces, then use the SetNamedItem method.

public:
 virtual IXmlNode ^ SetNamedItemNS(IXmlNode ^ node) = SetNamedItemNS;
IXmlNode SetNamedItemNS(IXmlNode const& node);
public IXmlNode SetNamedItemNS(IXmlNode node);
function setNamedItemNS(node)
Public Function SetNamedItemNS (node As IXmlNode) As IXmlNode

Parameters

node
IXmlNode

The node to add to the collection.

Note

You set the namespace when you create the node using the CreateAttributeNS or CreateElementNS methods.

Returns

The attribute successfully added to the collection. If Null, no object is created.

Applies to