Click or drag to resize

INodeCollection Interface

Represents a collection of the DOM nodes.

Namespace:  DotNetBrowser.Dom
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
public interface INodeCollection : IEnumerable<INode>, 
	IEnumerable

The INodeCollection type exposes the following members.

Methods
  NameDescription
Public methodAppend
Appends a node as the last item of the collection. The new node could be an existing node in the document, or a new node. If the node is existing node, it will be moved to new location in the document.
Public methodAsReadOnly
Returns the snapshot of the items in the collection as a read-only list.
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
(Inherited from IEnumerableINode.)
Public methodInsert
Inserts a new node before an existing beforeNode.
Public methodRemove
Removes a node from the collection.
Public methodReplace
Replaces an existing child node with a new node. The new node could be an existing node in the document, or you can create a new node. If the newNode is an existing node, it will be moved to new location in the document.
Top
See Also