IXmlElementSetAttribute Method  | 
.NET API Reference for Oracle® Coherence Community Edition 
 (14.1.1.0)
E55634-01
 
            Set an attribute value.
            
 
    Namespace: 
   Tangosol.Run.Xml
    Assembly:
   Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxvoid SetAttribute(
	string name,
	IXmlValue value
)
Parameters
- name
 - Type: SystemString
            The name of the attribute.
             - value
 - Type: Tangosol.Run.XmlIXmlValue
            The new value for the attribute; null indicates that the
            attribute should be removed.
             
Remarks
            If the attribute does not already exist, and the new value is
            non-null, then the attribute is added and its value is set to the
            passed value. If the attribute does exist, and the new value is
            non-null, then the attribute's value is updated to the passed
            value. If the attribute does exist, but the new value is
            
null, then the attribute and its corresponding value are
            removed.
            This is a convenience method. Attributes are accessed and
            manipulated via the dictionary returned from
            
Attributes.
            
See Also