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/MixedCodeDocumentFragmentType.cs')
-rw-r--r--docs/HtmlAgilityPack/MixedCodeDocumentFragmentType.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/HtmlAgilityPack/MixedCodeDocumentFragmentType.cs b/docs/HtmlAgilityPack/MixedCodeDocumentFragmentType.cs
new file mode 100644
index 00000000000..28ca5421f88
--- /dev/null
+++ b/docs/HtmlAgilityPack/MixedCodeDocumentFragmentType.cs
@@ -0,0 +1,19 @@
+// HtmlAgilityPack V1.0 - Simon Mourier <simon underscore mourier at hotmail dot com>
+namespace HtmlAgilityPack
+{
+ /// <summary>
+ /// Represents the type of fragment in a mixed code document.
+ /// </summary>
+ public enum MixedCodeDocumentFragmentType
+ {
+ /// <summary>
+ /// The fragment contains code.
+ /// </summary>
+ Code,
+
+ /// <summary>
+ /// The fragment contains text.
+ /// </summary>
+ Text,
+ }
+} \ No newline at end of file