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/MixedCodeDocumentTextFragment.cs')
-rw-r--r--docs/HtmlAgilityPack/MixedCodeDocumentTextFragment.cs32
1 files changed, 32 insertions, 0 deletions
diff --git a/docs/HtmlAgilityPack/MixedCodeDocumentTextFragment.cs b/docs/HtmlAgilityPack/MixedCodeDocumentTextFragment.cs
new file mode 100644
index 00000000000..8aa3cdd91cc
--- /dev/null
+++ b/docs/HtmlAgilityPack/MixedCodeDocumentTextFragment.cs
@@ -0,0 +1,32 @@
+// HtmlAgilityPack V1.0 - Simon Mourier <simon underscore mourier at hotmail dot com>
+namespace HtmlAgilityPack
+{
+ /// <summary>
+ /// Represents a fragment of text in a mixed code document.
+ /// </summary>
+ public class MixedCodeDocumentTextFragment : MixedCodeDocumentFragment
+ {
+ #region Constructors
+
+ internal MixedCodeDocumentTextFragment(MixedCodeDocument doc)
+ :
+ base(doc, MixedCodeDocumentFragmentType.Text)
+ {
+ }
+
+ #endregion
+
+ #region Properties
+
+ /// <summary>
+ /// Gets the fragment text.
+ /// </summary>
+ public string Text
+ {
+ get { return FragmentText; }
+ set { FragmentText = value; }
+ }
+
+ #endregion
+ }
+} \ No newline at end of file