Sorry, nothing to see here
[mono.git] / mcs / class / System / System.Net / WebAsyncResult.cs
index 7b31ba10d15977189c8a96bffd46ad6797ce9246..6d0a3f431ee357ef6d6b2d8b4e389889d9610066 100644 (file)
@@ -44,13 +44,13 @@ namespace System.Net
                IAsyncResult innerAsyncResult;
                bool callbackDone;
                Exception exc;
-               HttpWebRequest request;
                HttpWebResponse response;
                Stream writeStream;
                byte [] buffer;
                int offset;
                int size;
                object locker = new object ();
+               public bool EndCalled;
 
                public WebAsyncResult (AsyncCallback cb, object state)
                {
@@ -60,7 +60,6 @@ namespace System.Net
 
                public WebAsyncResult (HttpWebRequest request, AsyncCallback cb, object state)
                {
-                       this.request = request;
                        this.cb = cb;
                        this.state = state;
                }
@@ -89,7 +88,6 @@ namespace System.Net
                {
                        callbackDone = false;
                        exc = null;
-                       request = null;
                        response = null;
                        writeStream = null;
                        exc = null;