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.Web/System.Web.UI.WebControls/XmlBuilder.cs')
-rw-r--r--mcs/class/System.Web/System.Web.UI.WebControls/XmlBuilder.cs30
1 files changed, 5 insertions, 25 deletions
diff --git a/mcs/class/System.Web/System.Web.UI.WebControls/XmlBuilder.cs b/mcs/class/System.Web/System.Web.UI.WebControls/XmlBuilder.cs
index 445e87143d2..4aaa88a7580 100644
--- a/mcs/class/System.Web/System.Web.UI.WebControls/XmlBuilder.cs
+++ b/mcs/class/System.Web/System.Web.UI.WebControls/XmlBuilder.cs
@@ -2,10 +2,8 @@
// System.Web.UI.WebControls.XmlBuilder.cs
//
// Author:
-// Andreas Nahr (ClassDevelopment@A-SoftTech.com)
-// Gonzalo Paniagua Javier (gonzalo@novell.com)
+// Andreas Nahr (ClassDevelopment@A-SoftTech.com)
//
-// Copyright (c) 2004 Novell, Inc. (http://www.novell.com)
//
//
@@ -31,16 +29,14 @@
using System;
using System.Collections;
-using System.Web.Compilation;
using System.Web.UI;
-using System.Xml;
namespace System.Web.UI.WebControls
{
- class XmlBuilder : ControlBuilder
+ internal class XmlBuilder : ControlBuilder
{
public override void AppendLiteralString (string s)
- {
+ {
}
public override Type GetChildControlType (string tagName, IDictionary attribs)
@@ -53,26 +49,10 @@ namespace System.Web.UI.WebControls
return true;
}
+ [MonoTODO ("find out what this does and implement")]
public override void SetTagInnerText (string text)
{
- string trimmed = text.Trim ();
- if (trimmed == "")
- return;
-
- XmlDocument doc = new XmlDocument ();
- try {
- doc.LoadXml (text);
- } catch (XmlException xmle) {
- Location newloc = new Location (location);
- if (xmle.LineNumber >= 0)
- newloc.BeginLine += xmle.LineNumber - 1;
-
- location = newloc;
- throw;
- }
-
- base.AppendLiteralString (trimmed);
+ throw new NotImplementedException ();
}
}
}
-