Interface IOmitsNode
An object which can be used to omit a specified node. Omitting an node node is essentially equivalent to replacing that node node with its children.
Namespace: ZptSharp.Dom
Assembly: ZptSharp.Abstractions.dll
Syntax
public interface IOmitsNode
Methods
| Improve this Doc View SourceOmit(INode)
Omits the specified node node from its DOM. The node's parent and children will still be a part of the DOM, but the node node itself will be removed.
Declaration
void Omit(INode node)
Parameters
Type | Name | Description |
---|---|---|
INode | node | The node node to omit. |