开发者

How does this class implement IDisposable if it doesn't have a Dispose method?

开发者 https://www.devze.com 2023-01-05 05:10 出处:网络
FtpW开发者_如何学PythonebResponse implements IDisposable, but it doesn\'t have a Dispose method.How is that possible?Its implemented in the base class WebResponse, see http://msdn.microsoft.com/en-us/

FtpW开发者_如何学PythonebResponse implements IDisposable, but it doesn't have a Dispose method. How is that possible?


Its implemented in the base class WebResponse, see http://msdn.microsoft.com/en-us/library/system.net.webresponse_methods.aspx


It does have the Dispose method through inheritance, but it is an explicit implementation. To call it, you would have to use

((IDisposable)myObject).Dispose();

Or, of course, just wrap it in a using block, as it does the explicit call for you.


When you implement an interface explicitly, you won't get the method in the listing. You will have to cast that object to implemented interface to get access to that method.

public class MyClass : IDisposable
{
    void IDisposable.Dispose()
    {
        throw new NotImplementedException();
    }
}

Reference : http://msdn.microsoft.com/en-us/library/ms173157.aspx


It's implemented in the base class WebResponse

void IDisposable.Dispose()
{
try
{
    this.Close();
    this.OnDispose();
}
catch
{
}
}

alt text http://img227.imageshack.us/img227/2428/redgatesnetreflector.png


It inherits from System.Net.WebResponse which implements these methods.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号