Click or drag to resize

IElementAttributeNodes Property

Gets a list that contains attribute nodes of the element. Each list entry represents an attribute node.

Namespace:  DotNetBrowser.Dom
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
IReadOnlyList<IAttribute> AttributeNodes { get; }

Property Value

Type: IReadOnlyListIAttribute
A list that contains attribute nodes of the element. The list will be empty if the element does not have attributes.
Exceptions
ExceptionCondition
ObjectDisposedExceptionThe IElement has already been disposed.
See Also