The Nevron Document Object Model (or simply DOM), provides support for consistent management and implementation of XML-like object structures. The DOM can be used not only for the building of documents - it possesses the needed flexibility to model any hierarchical structure. The DOM is built on top of the following core abstractions:
All code examples in this chapter assume that the Nevron.System.dll assembly is referenced by your project and you are using the Nevron.Dom namespace:
C# |
Copy Code
|
---|---|
using Nevron.Dom;
|
Visual Basic |
Copy Code
|
---|---|
Imports Nevron.Dom
|