fix mobile build.
[mono-project.git] / docs / HtmlAgilityPack / MixedCodeDocumentTextFragment.cs
blob8aa3cdd91ccc92e30bac28063e3cbe0ba0780f62
1 // HtmlAgilityPack V1.0 - Simon Mourier <simon underscore mourier at hotmail dot com>
2 namespace HtmlAgilityPack
4 /// <summary>
5 /// Represents a fragment of text in a mixed code document.
6 /// </summary>
7 public class MixedCodeDocumentTextFragment : MixedCodeDocumentFragment
9 #region Constructors
11 internal MixedCodeDocumentTextFragment(MixedCodeDocument doc)
13 base(doc, MixedCodeDocumentFragmentType.Text)
17 #endregion
19 #region Properties
21 /// <summary>
22 /// Gets the fragment text.
23 /// </summary>
24 public string Text
26 get { return FragmentText; }
27 set { FragmentText = value; }
30 #endregion