2006-12-01 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Fri, 1 Dec 2006 11:02:01 +0000 (11:02 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Fri, 1 Dec 2006 11:02:01 +0000 (11:02 -0000)
* AnyReturnReader.cs : implemented, it does almost nothing.

svn path=/branches/atsushi/mcs/; revision=68825

mcs/class/System.Web.Services/System.Web.Services.Protocols/AnyReturnReader.cs
mcs/class/System.Web.Services/System.Web.Services.Protocols/ChangeLog

index 969b318e2a39f0fa6cf1a5e5519305ec38dca33f..225b7dcea27f04024fcc58170df7605cdb714964 100644 (file)
@@ -37,32 +37,28 @@ namespace System.Web.Services.Protocols {
 
                #region Constructors
 
-               [MonoTODO]
                public AnyReturnReader () 
                {
-                       throw new NotImplementedException ();
                }
                
                #endregion // Constructors
 
                #region Methods
 
-               [MonoTODO]
                public override object GetInitializer (LogicalMethodInfo methodInfo)
                {
-                       throw new NotImplementedException ();
+                       // do nothing
                }
 
-               [MonoTODO]
                public override void Initialize (object o)
                {
-                       throw new NotImplementedException ();
+                       // do nothing
                }
                        
-               [MonoTODO]
+               // returns the input HTTP response stream.
                public override object Read (WebResponse response, Stream responseStream)
                {
-                       throw new NotImplementedException ();
+                       return responseStream;
                }
 
                #endregion // Methods
index 990705cf181faab5b68856940720f55a97b26a40..0d2fff54abbe664d76cca3a4baeba1aef5ca5f67 100644 (file)
@@ -1,3 +1,7 @@
+2006-12-01  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * AnyReturnReader.cs : implemented, it does almost nothing.
+
 2006-12-01  Atsushi Enomoto  <atsushi@ximian.com>
 
        * SoapServerMethod.cs : implemented based on SoapMethodStubInfo.