Does the garbage collector clean up web service references or do I need to call dispose on the service reference after I'm finished calling whatever method I call?
|
1
|
|
|
|
|
|
After checking the entire inheritance hierarchy of web services, I found the Knowing this, it is ideal to call The easiest way to do this is to use the keyword
This will automatically call
UPDATE
|
||||||||||
|
|
|
I think the DataService inherits Dispose from Component. |
||
|
|
|
|
what are you trying to accomplish here? If your worried about performance, then I would worry more about the responsiveness of the server hosting the webservice and the network speed, as they can dramatically affect the length of time you have to wait for the webservice call to complete (unless its asynchronous). The examples on MSDN dont call 'Dispose' and its quite obvious that the garbage collector will do its job, so unless your working on a realtime system that needs to process over 100,000 records in memory every second, then maybe you dont need to come up with a way to dispose resources or manage memory. |
||
|
|
|
Objects that implement IDispose should be disposed of manually to assist the garbage collector. If you object is short lived use a |
||
|
|
