Normally, one writes code something like this to download some data using a WebRequest.
using(WebResponse resp = request.GetResponse()) // WebRequest request...
using(Stream str = resp.GetResponseStream())
; // do something with the stream str
Now if a WebException is thrown, the WebException has a reference to the WebResponse object, which may or may not have Dispose called (depending on where the exception has happened, or how the response class is implemented) - I don't know.
My question is how one is supposed to deal with this. Is one supposed to be coding very defensively, and dispose of the response in the WebException object (that would be a little weird, as WebException is not IDisposable). Or is one supposed to ignore this, potentially accessing a disposed object or never disposing an IDisposable object? The example given in the MSDN documentation for WebException.Response is wholly inadequate.
I'm pretty sure that when you have a using statement the object is disposed, regardless of how you exit the using block (Be it via exception, return or simply progressing through the function).
I suspect you'll find that the object inside the WebException has already been disposed if you let it leave the using block.
Remember, disposing of an object doesn't necessarily prevent accessing it later. It can be unpredictable to try to call methods on it later, causing exceptions of it's own or very weird behavior (And hence I wouldn't recommend it). But even still a large portion of the object is still left behind for the garbage collector even if you dispose it, and hence is still accessible. The purpose of the dispose is typically to clean up resource handles (Like in this case active TCP connections) that for performance reasons you can't realistically leave laying around until the garbage collector finds them. I only mention this to clarify that it's not mutually exclusive for it to be disposed and the exception to hold a reference to it.
A very interesting question (although worth pointing out that the WebResponse object will have been disposed as you exit the using). My gut feeling is that it doesn't really matter that you've got a reference to this disposed WebResponse object as long as you don't try to do anything "operational" with it.
You can probably still access certain properties on the instance for logging purposes (such as the ResponseUri) without getting an
ObjectDisposedException
, but overall reference held by the exception is not there so you can continue using the instance.I'd be interested to see what others say.
is (almost) equivalent to
so your object will always be disposed.
This means that in your case
ex.Response will be the same object as your local resp object, which is disposed when you get to the catch handler. This means that DoSomething is using a disposed object, and will likely fail with an ObjectDisposedException.
HttpWebRequest
internally makes a memory stream off the underlying network stream before throwingWebException
, so there is no unmanaged resource associated with theWebResponse
returned fromWebException.Response
.This makes it unnecessary to call
Dispose()
on it. In fact, trying to disposeWebException.Response
can cause headache and issues because you may have callers of your code that is attempting to read properties associated with it.However it is a good practice that you should dispose any
IDisposable
objects you own. If you decide to do so, make sure you don't have code depending on being able to readWebException.Response
properties and/or its stream. The best way would be you handle the exception and throw new type of exception so that you don't leakWebException
up to the caller when possible.And also consider moving to
HttpClient
which replacesHttpWebRequest
.Disclaimer: No warranty implied.
I get similar cases in EF DB connections.
So i actually create a connections list.
At the end of game , i loop dispose all of them.
I have had a quick peek with Reflector, and can now say:
WebResponse
, being an abstract class, delegates all its closing/disposing behaviour to its derived classes.HttpWebResponse
, being the derived class you are almost certainly using here, in its close/dispose methods, is only concerned with disposing the actual response stream. The rest of the class state can be left to the GC's tender mercies.It follows that it's probably safe to do whatever you like with regard to exception handling, as long as:
WebResponse
in thetry
block, enclose it in ausing
block.WebException
in thecatch
block, enclose it in ausing
block as well.WebException
itself.