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/XmlElement.cs')
-rw-r--r--mcs/class/System.XML/System.Xml/XmlElement.cs14
1 files changed, 11 insertions, 3 deletions
diff --git a/mcs/class/System.XML/System.Xml/XmlElement.cs b/mcs/class/System.XML/System.Xml/XmlElement.cs
index 5c346024596..da26a8b0ca9 100644
--- a/mcs/class/System.XML/System.Xml/XmlElement.cs
+++ b/mcs/class/System.XML/System.Xml/XmlElement.cs
@@ -52,6 +52,15 @@ namespace System.Xml
}
[MonoTODO ("Setter.")]
+ public override string InnerText {
+ get {
+ // Not sure why this is an override. Passing through for now.
+ return base.InnerText;
+ }
+ set { throw new NotImplementedException (); }
+ }
+
+ [MonoTODO ("Setter.")]
public override string InnerXml {
get {
// Not sure why this is an override. Passing through for now.
@@ -108,9 +117,8 @@ namespace System.Xml
}
public override string Prefix {
- get {
- return prefix;
- }
+ get { return prefix; }
+ set { prefix = value; }
}
#endregion