2003-03-12 Elan Feingold <efeingold@mn.rr.com>
[mono.git] / mcs / class / System.XML / System.Xml / XmlEntity.cs
index dc9f51dfe9ba7b45054503edc8a8ad92ae94e4a8..f0778d8f3e7025eff99dc4efd1f266339149e204 100755 (executable)
@@ -21,6 +21,7 @@ namespace System.Xml
                        this.NDATA = NDATA;
                        this.publicId = publicId;
                        this.systemId = systemId;
+                       this.baseUri = doc.BaseURI;
                }
 
                #endregion
@@ -31,14 +32,14 @@ namespace System.Xml
                string NDATA;
                string publicId;
                string systemId;
+               string baseUri;
 
                #endregion
 
                #region Properties
 
-               [MonoTODO]
                public override string BaseURI {
-                       get { throw new NotImplementedException (); }
+                       get {  return baseUri; }
                }
 
                [MonoTODO]