Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/HtmlAgilityPack/HtmlNodeType.cs')
-rw-r--r--docs/HtmlAgilityPack/HtmlNodeType.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/HtmlAgilityPack/HtmlNodeType.cs b/docs/HtmlAgilityPack/HtmlNodeType.cs
new file mode 100644
index 00000000000..a84e4af4705
--- /dev/null
+++ b/docs/HtmlAgilityPack/HtmlNodeType.cs
@@ -0,0 +1,29 @@
+// HtmlAgilityPack V1.0 - Simon Mourier <simon underscore mourier at hotmail dot com>
+namespace HtmlAgilityPack
+{
+ /// <summary>
+ /// Represents the type of a node.
+ /// </summary>
+ public enum HtmlNodeType
+ {
+ /// <summary>
+ /// The root of a document.
+ /// </summary>
+ Document,
+
+ /// <summary>
+ /// An HTML element.
+ /// </summary>
+ Element,
+
+ /// <summary>
+ /// An HTML comment.
+ /// </summary>
+ Comment,
+
+ /// <summary>
+ /// A text node is always the child of an element or a document node.
+ /// </summary>
+ Text,
+ }
+} \ No newline at end of file