2010-04-15 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Thu, 15 Apr 2010 08:06:24 +0000 (08:06 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Thu, 15 Apr 2010 08:06:24 +0000 (08:06 -0000)
* XamlXmlReader.cs : Return Member. Remove NIE.

svn path=/trunk/mcs/; revision=155477

mcs/class/System.Xaml/System.Xaml/ChangeLog
mcs/class/System.Xaml/System.Xaml/XamlXmlReader.cs

index a51ef181a315ee086ee5de1c0b4d7319462b5b98..b929c3ecc6013629d7a7aa19c32b34db4917fa75 100644 (file)
@@ -1,3 +1,7 @@
+2010-04-15  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * XamlXmlReader.cs : Return Member. Remove NIE.
+
 2010-04-14  Atsushi Enomoto  <atsushi@ximian.com>
 
        * XamlXmlWriter.cs : use TypeConverter to get string value to write.
index 7cef6460c844d2593b8789cf6a627faedfcfe57d..05c8649e1d0e1cb6028443d874ab65769fb07d47 100644 (file)
@@ -159,7 +159,7 @@ namespace System.Xaml
                }
 
                public override XamlMember Member {
-                       get { throw new NotImplementedException (); }
+                       get { return current as XamlMember; }
                }
                public override NamespaceDeclaration Namespace {
                        get { return current as NamespaceDeclaration; }
@@ -243,7 +243,6 @@ namespace System.Xaml
                                ReadValue ();
                                return true;
                        }
-                       throw new NotImplementedException ();
                }
 
                bool CheckNextNamespace ()