FtpWebResponse implements IDisposable, but it doesn't have a Dispose method. How is that possible?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It does have the Dispose method through inheritance, but it is an explicit implementation. To call it, you would have to use
Or, of course, just wrap it in a |
|||||||||||
|
|
Its implemented in the base class WebResponse, see http://msdn.microsoft.com/en-us/library/system.net.webresponse_methods.aspx |
|||||||||||
|
|
It's implemented in the base class WebResponse
|
|||
|
|
|
When you implement an
Reference : http://msdn.microsoft.com/en-us/library/ms173157.aspx |
|||
|
|
|
It inherits from System.Net.WebResponse which implements these methods. |
|||
|
|
