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 'mcs/class/System.XML/System.Xml/XmlText.cs')
-rw-r--r--mcs/class/System.XML/System.Xml/XmlText.cs69
1 files changed, 0 insertions, 69 deletions
diff --git a/mcs/class/System.XML/System.Xml/XmlText.cs b/mcs/class/System.XML/System.Xml/XmlText.cs
deleted file mode 100644
index 59f2ba1477f..00000000000
--- a/mcs/class/System.XML/System.Xml/XmlText.cs
+++ /dev/null
@@ -1,69 +0,0 @@
-//
-// System.Xml.XmlText
-//
-// Author:
-// Jason Diamond <jason@injektilo.org>
-//
-// (C) 2002 Jason Diamond http://injektilo.org/
-//
-
-using System;
-
-namespace System.Xml
-{
- public class XmlText : XmlCharacterData
- {
- #region Constructor
-
- protected internal XmlText (string strData, XmlDocument doc) : base(strData, doc)
- {
- }
-
- #endregion
-
- #region Properties
-
- public override string LocalName
- {
- get { return "#text"; }
- }
-
- public override string Name {
- get { return "#text"; }
- }
-
- public override XmlNodeType NodeType {
- get { return XmlNodeType.Text; }
- }
-
- public override string Value {
- get { return Data; }
- set { Data = value; }
- }
-
- #endregion
-
- #region Methods
-
- [MonoTODO]
- public override XmlNode CloneNode (bool deep)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public virtual XmlText SplitText (int offset)
- {
- throw new NotImplementedException ();
- }
-
- public override void WriteContentTo (XmlWriter w) {}
-
- public override void WriteTo (XmlWriter w)
- {
- w.WriteString (Data);
- }
-
- #endregion
- }
-}