Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.39 KB

ixmlnode_attributes.md

File metadata and controls

41 lines (32 loc) · 1.39 KB
-api-id -api-type
P:Windows.Data.Xml.Dom.IXmlNode.Attributes
winrt property

Windows.Data.Xml.Dom.IXmlNode.Attributes

-description

Gets the list of attributes of this node.

-property-value

The attributes for this node.

-remarks

This property returns a XmlNamedNodeMap for the nodes that can return attributes. These are the Element, Entity, and Notation nodes. This property is NULL for all other node types. For the valid node types, the XmlNamedNodeMap is always returned; when there are no attributes on the element, the list length is set to zero.

The following table describes the attributes for the node types.

NodeTypeAttributes
ElementIXmlNamedNodeMap
AttributeNULL
TextNULL
CDATASectionNULL
EntityReferenceNULL
EntityNULL
ProcessingInstructionNULL
CommentNULL
DocumentNULL
DocumentTypeNULL
DocumentFragmentNULL
NotationNULL

-examples

-see-also