XmlElement.SetAttributeNodeNS(XmlAttribute) Method

Definition

Sets or updates the supplied attribute node on this element. If you are not using any namespaces, then use the SetAttributeNode method.

public:
 virtual XmlAttribute ^ SetAttributeNodeNS(XmlAttribute ^ newAttribute) = SetAttributeNodeNS;
XmlAttribute SetAttributeNodeNS(XmlAttribute const& newAttribute);
public XmlAttribute SetAttributeNodeNS(XmlAttribute newAttribute);
function setAttributeNodeNS(newAttribute)
Public Function SetAttributeNodeNS (newAttribute As XmlAttribute) As XmlAttribute

Parameters

newAttribute
XmlAttribute

The node to add to the collection.

Note

You set the namespace when you create the node using the CreateAttributeNS method.

Returns

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

Applies to