SecurityElement::AddAttribute Method (String^, String^)
Adds a name/value attribute to an XML element.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- name
-
Type:
System::String^
The name of the attribute.
- value
-
Type:
System::String^
The value of the attribute.
| Exception | Condition |
|---|---|
| ArgumentNullException | The name parameter or value parameter is null. |
| ArgumentException | The name parameter or value parameter is invalid in XML. -or- An attribute with the name specified by the name parameter already exists. |
Names and values in attributes should only contain valid XML attribute characters. XML attribute names must be unique. Use Escape to remove invalid characters from the string.
There is no support for quoted strings, so strings for name/value pairs should not contain quotes or other characters requiring quoting.
The following code shows the use of the AddAttribute method to add a name/value attribute to an XML element. This code example is part of a larger example provided for the SecurityElement class.
Available since 1.1