XmlElement.SetAttributeNodeNS(XmlAttribute) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.