SetAttributeNS

Element.SetAttributeNS method

Adds a new attribute. If an attribute with the same local name and namespace URI is already present on the element, its prefix is changed to be the prefix part of the qualifiedName, and its value is changed to be the value parameter.

public void SetAttributeNS(string namespaceURI, string qualifiedName, string value)
Parameter Type Description
namespaceURI String The attribute namespace URI.
qualifiedName String The attribute qualified name.
value String The attribute value.

See Also