INodeCollection Interface |
Namespace: DotNetBrowser.Dom
public interface INodeCollection : IEnumerable<INode>, IEnumerable
The INodeCollection type exposes the following members.
Name | Description | |
---|---|---|
![]() | Append |
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.
|
![]() | AsReadOnly |
Returns the snapshot of the items in the collection as a read-only list.
|
![]() | GetEnumerator | Returns an enumerator that iterates through the collection. (Inherited from IEnumerableINode.) |
![]() | Insert |
Inserts a new node before an existing beforeNode.
|
![]() | Remove |
Removes a node from the collection.
|
![]() | Replace |
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.
|