Set the value of the attribute with the specified name on the item's node.
Namespace:
Aras.IOM
Assembly:
IOM (in IOM.dll) Version: 14.0.9.36244
Syntaxpublic void setAttribute(
string attributeName,
string attributeValue
)
Public Sub setAttribute (
attributeName As String,
attributeValue As String
)
public void setAttribute(
String attributeName,
String attributeValue
)
public function setAttribute(
attributeName : String,
attributeValue : String
)
Parameters
- attributeName
- Type: SystemString
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.
- attributeValue
- Type: SystemString
The value to set for the attribute.
ExceptionsException | Condition |
---|
Exception | The instance doesn't represent a single item. |
XmlException | The specified attribute name contains an invalid character. |
ArgumentException | The this.node is read-only. |
See Also