System.Xml.XmlElement.SetAttribute Method

Sets the value of the attribute with the specified name.

Syntax

public virtual void SetAttribute (string name, string value)

Parameters

name
The name of the attribute to create or alter. This is a qualified name. If the name contains a colon it is parsed into prefix and local name components.
value
The value to set for the attribute.

Remarks

If an attribute with the same name is already present in the element, its value is changed to that of value. value is a simple string. It is not parsed as it is being set. Any markup, such as syntax to be recognized as an entity reference, is treated as literal text and needs to be properly escaped by the implementation when it is written out. In order to assign an attribute value that contains entity references, the user must create an System.Xml.XmlAttribute node plus any System.Xml.XmlText and System.Xml.XmlEntityReference nodes, build the appropriate subtree and use XmlElement.SetAttributeNode(XmlAttribute) to assign it as the value of an attribute.

Requirements

Namespace: System.Xml
Assembly: System.Xml (in System.Xml.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0