XmlText.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. //
  2. // System.Xml.XmlText
  3. //
  4. // Author:
  5. // Jason Diamond <[email protected]>
  6. //
  7. // (C) 2002 Jason Diamond http://injektilo.org/
  8. //
  9. using System;
  10. namespace System.Xml
  11. {
  12. public class XmlText : XmlCharacterData
  13. {
  14. #region Constructor
  15. protected internal XmlText (string strData, XmlDocument doc) : base(strData, doc)
  16. {
  17. }
  18. #endregion
  19. #region Properties
  20. public override string LocalName
  21. {
  22. get { return "#text"; }
  23. }
  24. public override string Name {
  25. get { return "#text"; }
  26. }
  27. public override XmlNodeType NodeType {
  28. get { return XmlNodeType.Text; }
  29. }
  30. #endregion
  31. #region Methods
  32. [MonoTODO]
  33. public override XmlNode CloneNode (bool deep)
  34. {
  35. throw new NotImplementedException ();
  36. }
  37. [MonoTODO]
  38. public virtual XmlText SplitText (int offset)
  39. {
  40. throw new NotImplementedException ();
  41. }
  42. [MonoTODO]
  43. public override void WriteContentTo (XmlWriter w)
  44. {
  45. throw new NotImplementedException ();
  46. }
  47. [MonoTODO]
  48. public override void WriteTo (XmlWriter w)
  49. {
  50. throw new NotImplementedException ();
  51. }
  52. #endregion
  53. }
  54. }