INamedNodeMap.SetNamedItem(INode) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds a node using its <code>nodeName</code> attribute.
[Android.Runtime.Register("setNamedItem", "(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;", "GetSetNamedItem_Lorg_w3c_dom_Node_Handler:Org.W3c.Dom.INamedNodeMapInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Org.W3c.Dom.INode? SetNamedItem (Org.W3c.Dom.INode? arg);
[<Android.Runtime.Register("setNamedItem", "(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;", "GetSetNamedItem_Lorg_w3c_dom_Node_Handler:Org.W3c.Dom.INamedNodeMapInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member SetNamedItem : Org.W3c.Dom.INode -> Org.W3c.Dom.INode
Parameters
- arg
- INode
A node to store in this map. The node will later be accessible using the value of its <code>nodeName</code> attribute.
Returns
If the new <code>Node</code> replaces an existing node the replaced <code>Node</code> is returned, otherwise <code>null</code> is returned.
- Attributes
Exceptions
WRONG_DOCUMENT_ERR: Raised if arg was created from a
different document than the one that created this map.
NO_MODIFICATION_ALLOWED_ERR: Raised if this map is readonly.
INUSE_ATTRIBUTE_ERR: Raised if arg is an
Attr that is already an attribute of another
Element object. The DOM user must explicitly clone
Attr nodes to re-use them in other elements.
HIERARCHY_REQUEST_ERR: Raised if an attempt is made to add a node
doesn't belong in this NamedNodeMap. Examples would include trying
to insert something other than an Attr node into an Element's map
of attributes, or a non-Entity node into the DocumentType's map of
Entities.
Remarks
Java documentation for org.w3c.dom.NamedNodeMap.setNamedItem(org.w3c.dom.Node).
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.