I\'m trying to find out if it is neccessary to close a .net service reference client when you are done using it. Almost all of the examples that I have come across on the net d
Best practice is, if the class implements IDisposable, call Dispose()
in a finally
clause, or wrap it with using () { }
Edit
Following the @casperOne comment below, it seems WCF clients should be treated more cautiously. I didn't know that, and am a little unsettled by it, with using() having served me well thus far.
The best thing to do is look at the generated client code for Dispose()
and see if it's really disposing of anything, like HTTP connections or something.
On one hand, it may just be that the interface it implements inherits from IDisposable
because some client might need to dispose of something, even though that particular one doesn't. That's similar to MemoryStream, a class that implements IDisposable
because all Stream
s do, but that doesn't actually deal with any unmanaged resources.
On the other hand, it never hurts to use using
, even if Dispose()
is an empty method. And MS examples are actually really bad about not using using
even if they should (e.g. here), so don't take their example as good evidence that you don't need to.
Yes, you do, but you need to be very careful when doing so. While closing anything that implements ICommunicationObject the potential exists to cause the disposal of the object to take an excessive amount of time in the event that there is an error or fault on the channel.
Because of this, it is prescribed that you call the Close method and then call the Dispose
method on IDisposable
, using a number of catches for certain exception types and calling Abort before you finally call Dispose
.
You can wrap this logic up in an IDisposable
implementation which you can use in a using
statement.
The key here is to create a token that implements IDisposable
and then in that implementation, call Close
, catch the relevant exceptions, call Abort
(if necessary) and then call Dispose
.
This is implemented as an extension method which returns an IDisposable
on it which in turn allows you to use it in a using
statement.